Update leenkx/blender/lnx/props_ui.py
This commit is contained in:
parent
1958342a74
commit
8a7f5ee519
@ -761,8 +761,10 @@ class LNX_PT_LeenkxPlayerPanel(bpy.types.Panel):
|
||||
else:
|
||||
if bpy.app.version < (3, 0, 0):
|
||||
row.operator("lnx.stop", icon="CANCEL", text="")
|
||||
else:
|
||||
elif bpy.app.version > (3, 0, 0) and bpy.app.version < (4, 3, 2):
|
||||
row.operator("lnx.stop", icon="SEQUENCE_COLOR_01", text="")
|
||||
else:
|
||||
row.operator("lnx.stop", icon="EVENT_MEDIASTOP", text="")
|
||||
row.operator("lnx.clean_menu", icon="BRUSH_DATA")
|
||||
|
||||
col = layout.box().column()
|
||||
@ -1438,8 +1440,10 @@ class LNX_PT_TopbarPanel(bpy.types.Panel):
|
||||
else:
|
||||
if bpy.app.version < (3, 0, 0):
|
||||
row.operator("lnx.stop", icon="CANCEL", text="")
|
||||
else:
|
||||
elif bpy.app.version > (3, 0, 0) and bpy.app.version < (4, 3, 2):
|
||||
row.operator("lnx.stop", icon="SEQUENCE_COLOR_01", text="")
|
||||
else:
|
||||
row.operator("lnx.stop", icon="EVENT_MEDIASTOP", text="")
|
||||
row.operator("lnx.clean_menu", icon="BRUSH_DATA", text="")
|
||||
row.operator("lnx.open_editor", icon="DESKTOP", text="")
|
||||
row.operator("lnx.open_project_folder", icon="FILE_FOLDER", text="")
|
||||
|
Loading…
x
Reference in New Issue
Block a user