From 9f14769cbadc49bb2d7c5a23772ca91c47ed9ae9 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Thu, 11 Jul 2024 22:24:59 +1000 Subject: [PATCH] Very minor UI improvement to saving work calendar changes to show the text in the edit button --- src/blenderbim/blenderbim/bim/module/sequence/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/sequence/ui.py b/src/blenderbim/blenderbim/bim/module/sequence/ui.py index 6876030733..8239528f8d 100644 --- a/src/blenderbim/blenderbim/bim/module/sequence/ui.py +++ b/src/blenderbim/blenderbim/bim/module/sequence/ui.py @@ -955,8 +955,8 @@ class BIM_PT_work_calendars(Panel): row.label(text=work_calendar["Name"] or "Unnamed", icon="VIEW_ORTHO") if self.props.active_work_calendar_id == work_calendar_id: if self.props.editing_type == "ATTRIBUTES": - row.operator("bim.edit_work_calendar", text="", icon="CHECKMARK") - row.operator("bim.disable_editing_work_calendar", text="Cancel", icon="CANCEL") + row.operator("bim.edit_work_calendar", icon="CHECKMARK") + row.operator("bim.disable_editing_work_calendar", text="", icon="CANCEL") elif self.props.active_work_calendar_id: row.operator("bim.remove_work_calendar", text="", icon="X").work_calendar = work_calendar_id else: