Drawings cache options - document that optional are global

Otherwise it might be confusing as this option is displayed through "Active Drawing" UI.
This commit is contained in:
Andrej730
2025-08-11 12:36:31 +05:00
parent 9f92e4853f
commit f60abdd18f
+11 -3
View File
@@ -398,9 +398,17 @@ RASTER_STYLE_PROPERTIES_EXCLUDE = ("scene.render.filepath",)
class DocProperties(PropertyGroup):
should_use_underlay_cache: BoolProperty(name="Use Underlay Cache", default=False)
should_use_linework_cache: BoolProperty(name="Use Linework Cache", default=False)
should_use_annotation_cache: BoolProperty(name="Use Annotation Cache", default=False)
# Note that options are global in descriptions to prevent confusion,
# as options are available through Active Drawing UI, but they're actually global.
should_use_underlay_cache: BoolProperty(
name="Use Underlay Cache", description="Global option for all drawings.", default=False
)
should_use_linework_cache: BoolProperty(
name="Use Linework Cache", description="Global option for all drawings.", default=False
)
should_use_annotation_cache: BoolProperty(
name="Use Annotation Cache", description="Global option for all drawings.", default=False
)
is_editing_drawings: BoolProperty(name="Is Editing Drawings", default=False)
is_editing_schedules: BoolProperty(name="Is Editing Schedules", default=False)
is_editing_references: BoolProperty(name="Is Editing References", default=False)