From dcdae67a2d01d71e25fcc04a02163b3982004374 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 8 May 2025 15:28:45 +0500 Subject: [PATCH] Fix typo in 1619ae854 --- src/bonsai/bonsai/bim/module/drawing/prop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/drawing/prop.py b/src/bonsai/bonsai/bim/module/drawing/prop.py index 3a90609431..eb767e6ea7 100644 --- a/src/bonsai/bonsai/bim/module/drawing/prop.py +++ b/src/bonsai/bonsai/bim/module/drawing/prop.py @@ -510,7 +510,7 @@ def update_camera_type(self: "BIMCameraProperties", context: bpy.types.Context) CameraType = Literal["PERSP", "ORTHO"] CAMERA_TYPE_ENUM_ITEMS: dict[CameraType, tuple[str, str]] = { - "ORTHO": ("Ortographic", "Most common camera for the drawings, supporting all of the features."), + "ORTHO": ("Orthographic", "Most common camera for the drawings, supporting all of the features."), "PERSP": ("Perspective", "The only avilable features for perspective camera: freestyle linework, underlay."), }