minor fix for commit d3b176e

This commit is contained in:
Sigma Dimensions
2023-02-11 13:23:23 +01:00
parent 5beea8640e
commit e30992b905
3 changed files with 3 additions and 3 deletions
@@ -31,7 +31,7 @@ classes = (
operator.SelectGlobalId, operator.SelectGlobalId,
operator.SelectIfcClass, operator.SelectIfcClass,
operator.SelectPset, operator.SelectPset,
operator.ShowAllIfcElements, operator.ShowAllElements,
operator.FilterModelElements, operator.FilterModelElements,
operator.IfcSelector, operator.IfcSelector,
operator.SaveSelectorQuery, operator.SaveSelectorQuery,
@@ -452,7 +452,7 @@ class ActivateIfcBuildingStoreyFilter(Operator):
row.operator("bim.toggle_filter_selection", text="Deselect All").action = "DESELECT" row.operator("bim.toggle_filter_selection", text="Deselect All").action = "DESELECT"
class ShowAllIfcElements(Operator): class ShowAllElements(Operator):
"""Show all Physical objects in the 3D View. """Show all Physical objects in the 3D View.
Warning: Pressing this button will not work if collections are excluded in the outliner Panel. Warning: Pressing this button will not work if collections are excluded in the outliner Panel.
""" """
@@ -150,7 +150,7 @@ class IfcSelectorUI:
row.operator("bim.add_to_ifc_group", text="Add to IFC Group") row.operator("bim.add_to_ifc_group", text="Add to IFC Group")
row = layout.row(align=True) row = layout.row(align=True)
row.operator("bim.show_all_ifc_elements", text="Show All Elements", icon="HIDE_OFF") row.operator("bim.show_scene_elements", text="Show All Elements", icon="HIDE_OFF")
def draw_query_group_ui(self, ifc_selector, layout): def draw_query_group_ui(self, ifc_selector, layout):
for index, group in enumerate(ifc_selector.groups): for index, group in enumerate(ifc_selector.groups):