From 1486dc26e6878f4e6f8a7f9ddbe3f8d5df5068c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Perdig=C3=A3o?= Date: Fri, 7 Jul 2023 15:27:48 -0300 Subject: [PATCH] minor fix --- src/blenderbim/blenderbim/bim/module/pset/operator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/pset/operator.py b/src/blenderbim/blenderbim/bim/module/pset/operator.py index e72b11c053..909f7695a5 100644 --- a/src/blenderbim/blenderbim/bim/module/pset/operator.py +++ b/src/blenderbim/blenderbim/bim/module/pset/operator.py @@ -328,11 +328,11 @@ class SelectSimilarPsetValue(bpy.types.Operator): bl_idname = "bim.select_similar_pset_value" bl_label = "Select Similar Pset Value" bl_options = {"REGISTER", "UNDO"} - bl_description = "Selects objects with the same property value.\n\n" + "ALT+CLICK to select from all pset commons" + bl_description = "Selects objects with the same property value.\n\n" + "ALT+CLICK to select from all pset common" pset_name: bpy.props.StringProperty() prop_name: bpy.props.StringProperty() value: bpy.props.StringProperty() - all_pset_common: bpy.props.BoolProperty(name = "All Classes", default=False, options={"SKIP_SAVE"}) + all_pset_common: bpy.props.BoolProperty(name = "All Pset Common", default=False, options={"SKIP_SAVE"}) def invoke(self, context, event): # make sure to use SKIP_SAVE on property, otherwise it might get stuck