From d53351d21895851d7a5549ee2adf05d01c999351 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 3 Jun 2024 12:04:55 +0500 Subject: [PATCH] Remove redundant description repeating the label #4771 --- src/blenderbim/blenderbim/bim/module/material/operator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/material/operator.py b/src/blenderbim/blenderbim/bim/module/material/operator.py index a7cb1904c8..faa12e02a4 100644 --- a/src/blenderbim/blenderbim/bim/module/material/operator.py +++ b/src/blenderbim/blenderbim/bim/module/material/operator.py @@ -703,7 +703,7 @@ class EditMaterialSetItem(bpy.types.Operator, tool.Ifc.Operator): class ExpandMaterialCategory(bpy.types.Operator): bl_idname = "bim.expand_material_category" bl_label = "Expand Material Category" - bl_description = "Expand material category.\n\nSHIFT+CLICK to expand all material categories" + bl_description = "SHIFT+CLICK to expand all material categories" bl_options = {"REGISTER", "UNDO"} category: bpy.props.StringProperty() expand_all: bpy.props.BoolProperty(name="Expand All", default=False, options={"SKIP_SAVE"}) @@ -732,7 +732,7 @@ class ExpandMaterialCategory(bpy.types.Operator): class ContractMaterialCategory(bpy.types.Operator): bl_idname = "bim.contract_material_category" bl_label = "Contract Material Category" - bl_description = "Contract material category.\n\nSHIFT+CLICK to contract all material categories" + bl_description = "SHIFT+CLICK to contract all material categories" bl_options = {"REGISTER", "UNDO"} category: bpy.props.StringProperty() contract_all: bpy.props.BoolProperty(name="Contract All", default=False, options={"SKIP_SAVE"})