From 8a7f5ee51940879b2aa6a7b7c3f3b26dfdaf6d07 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 30 Jan 2025 13:21:20 +0000 Subject: [PATCH] Update leenkx/blender/lnx/props_ui.py --- leenkx/blender/lnx/props_ui.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/props_ui.py b/leenkx/blender/lnx/props_ui.py index de99d93..7825268 100644 --- a/leenkx/blender/lnx/props_ui.py +++ b/leenkx/blender/lnx/props_ui.py @@ -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="")