Fix structural operator names for consistency with Blender naming

This commit is contained in:
Andrej730
2025-01-23 13:44:00 +05:00
parent 582476cabe
commit 2e71765f4f
2 changed files with 2 additions and 2 deletions
@@ -34,7 +34,7 @@ class ShowLoads(bpy.types.Operator):
"""Draw decorations to show strucutural actions in 3d view"""
bl_idname = "bim.show_loads"
bl_label = "Show loads in 3D View"
bl_label = "Show Loads in 3D View"
def modal(self, context, event):
if event.type == "F5":
@@ -465,7 +465,7 @@ class BIM_PT_show_structural_activities(Panel):
row = self.layout.row(align=True)
row.operator(
"bim.show_loads",
text="Show loads",
text="Show Loads",
icon="HIDE_OFF",
)
row = self.layout.row(align=True)