This commit is contained in:
Andrej730
2025-05-08 15:28:45 +05:00
parent 5a7a368169
commit dcdae67a2d
+1 -1
View File
@@ -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."),
}