Skip to content

Commit

Permalink
fix: fix operator labels
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-hm committed Jan 22, 2022
1 parent 9a7d8f1 commit 18023dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bolt.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class NDBolt(bpy.types.Operator):
"""Adds a bolt using the 3D cursor position & rotation"""
bl_idname = "nd.bolt"
bl_label = "ND Bolt"
bl_label = "Bolt"
bl_options = {'GRAB_CURSOR', 'BLOCKING'}


Expand Down
2 changes: 1 addition & 1 deletion faux-bevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class NDFauxBevel(bpy.types.Operator):
"""Adds a single segment bevel and a weighted normal modifier"""
bl_idname = "nd.faux_bevel"
bl_label = "ND Faux Bevel"
bl_label = "Faux Bevel"
bl_options = {'GRAB_CURSOR', 'BLOCKING'}


Expand Down
4 changes: 2 additions & 2 deletions sketch-bevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

class NDSketchBevel(bpy.types.Operator):
"""Adds a vertex group based bevel and weld modifier"""
bl_idname = "nd.vgroup_bevel"
bl_label = "ND Sketch Bevel & Weld"
bl_idname = "nd.sketch_bevel"
bl_label = "Sketch Bevel"
bl_options = {'GRAB_CURSOR', 'BLOCKING'}


Expand Down

0 comments on commit 18023dc

Please sign in to comment.