Skip to content

Commit

Permalink
fix: standardize operator names
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-hm committed Jan 22, 2022
1 parent 94dd2b9 commit c25991e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bolt.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class NDBolt(bpy.types.Operator):
"""Adds a bolt using the 3D cursor position & rotation"""
bl_idname = "nd.bolt"
bl_idname = "ND_OT_bolt"
bl_label = "Bolt (& Hole Cutter)"
bl_options = {'REGISTER', 'UNDO', '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 @@ -5,7 +5,7 @@

class NDFauxBevel(bpy.types.Operator):
"""Adds a single segment bevel and a weighted normal modifier"""
bl_idname = "nd.faux_bevel"
bl_idname = "ND_OT_faux_bevel"
bl_label = "Faux Bevel"
bl_options = {'REGISTER', 'UNDO', 'GRAB_CURSOR', 'BLOCKING'}

Expand Down
2 changes: 1 addition & 1 deletion sketch_bevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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

Expand Down

0 comments on commit c25991e

Please sign in to comment.