bump to v0.0.7: Add convert to empties operator and add icon to specials menu operator #6
10
__init__.py
10
__init__.py
@ -1,5 +1,7 @@
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# https://extensions.blender.org/add-ons/c3db/
|
||||
|
||||
import bpy
|
||||
|
||||
|
||||
@ -21,10 +23,12 @@ class C3DB_MT_menu_specials(bpy.types.Menu):
|
||||
|
||||
def draw(self, context):
|
||||
layout = self.layout
|
||||
layout.operator("c3db.restore_previous")
|
||||
layout.operator("c3db.restore_next")
|
||||
layout.operator("c3db.restore_previous", icon="TRIA_UP_BAR")
|
||||
layout.operator("c3db.restore_next", icon="TRIA_DOWN_BAR")
|
||||
layout.separator()
|
||||
layout.operator("c3db.update")
|
||||
layout.operator("c3db.update", icon="FILE_REFRESH")
|
||||
layout.separator()
|
||||
layout.operator("c3db.delete_all", icon="TRASH")
|
||||
layout.separator()
|
||||
layout.operator("c3db.delete_all")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user