From 7f3559437f4106a67ca97d3a4d6d14132bfafff9 Mon Sep 17 00:00:00 2001 From: "Sigma Dimensions (Yass)" <79010126+myoualid@users.noreply.github.com> Date: Tue, 26 Sep 2023 16:36:48 +0100 Subject: [PATCH] fix warning statement when there are no saved animation color schemes --- src/blenderbim/blenderbim/bim/module/sequence/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/module/sequence/ui.py b/src/blenderbim/blenderbim/bim/module/sequence/ui.py index 850f507785..d0e8e15e03 100644 --- a/src/blenderbim/blenderbim/bim/module/sequence/ui.py +++ b/src/blenderbim/blenderbim/bim/module/sequence/ui.py @@ -556,7 +556,7 @@ class BIM_PT_animation_tools(Panel): row = self.layout.row(align=True) row.alignment = "RIGHT" - if self.animation_props.saved_color_schemes: + if AnimationColorSchemeData.data["saved_color_schemes"]: row.prop(self.animation_props, "saved_color_schemes", text="Color Scheme", icon="SEQUENCE_COLOR_04") else: row.label(text="No Color Scheme Saved", icon="INFO")