Skip to content

Commit

Permalink
fix: update set_lod_suffix mode type in utils_menu
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-hm committed May 7, 2022
1 parent 7b88654 commit 73aa1e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interface/utils_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def draw(self, context):
layout = self.layout
layout.operator_context = 'INVOKE_DEFAULT'
layout.operator("nd.name_sync", icon='FILE_REFRESH')
layout.operator("nd.set_lod_suffix", text="Low LOD", icon='ALIASED').suffix = 'LOW'
layout.operator("nd.set_lod_suffix", text="High LOD", icon='ANTIALIASED').suffix = 'HIGH'
layout.operator("nd.set_lod_suffix", text="Low LOD", icon='ALIASED').mode = 'LOW'
layout.operator("nd.set_lod_suffix", text="High LOD", icon='ANTIALIASED').mode = 'HIGH'
layout.separator()
layout.operator("nd.set_origin", icon='TRANSFORM_ORIGINS')
layout.separator()
Expand Down

0 comments on commit 73aa1e7

Please sign in to comment.