mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-21 09:05:18 +00:00
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:
@@ -398,9 +398,17 @@ RASTER_STYLE_PROPERTIES_EXCLUDE = ("scene.render.filepath",)
|
|||||||
|
|
||||||
|
|
||||||
class DocProperties(PropertyGroup):
|
class DocProperties(PropertyGroup):
|
||||||
should_use_underlay_cache: BoolProperty(name="Use Underlay Cache", default=False)
|
# Note that options are global in descriptions to prevent confusion,
|
||||||
should_use_linework_cache: BoolProperty(name="Use Linework Cache", default=False)
|
# as options are available through Active Drawing UI, but they're actually global.
|
||||||
should_use_annotation_cache: BoolProperty(name="Use Annotation Cache", default=False)
|
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_drawings: BoolProperty(name="Is Editing Drawings", default=False)
|
||||||
is_editing_schedules: BoolProperty(name="Is Editing Schedules", default=False)
|
is_editing_schedules: BoolProperty(name="Is Editing Schedules", default=False)
|
||||||
is_editing_references: BoolProperty(name="Is Editing References", default=False)
|
is_editing_references: BoolProperty(name="Is Editing References", default=False)
|
||||||
|
|||||||
Reference in New Issue
Block a user