From 9c4e56e307f942040b3b3089ee3955afbc86f95f Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Thu, 20 Jun 2024 18:14:04 +0200 Subject: [PATCH] UI: Move Save Incremental Menu Item Down Move "Save Incremental" down the File menu to the bottom of its section. Pull Request: https://projects.blender.org/blender/blender/pulls/123463 --- scripts/startup/bl_ui/space_topbar.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/startup/bl_ui/space_topbar.py b/scripts/startup/bl_ui/space_topbar.py index 8d9df316e84..ac2bac0d103 100644 --- a/scripts/startup/bl_ui/space_topbar.py +++ b/scripts/startup/bl_ui/space_topbar.py @@ -244,15 +244,16 @@ class TOPBAR_MT_file(Menu): layout.operator_context = 'EXEC_AREA' if context.blend_data.is_saved else 'INVOKE_AREA' layout.operator("wm.save_mainfile", text="Save", icon='FILE_TICK') - sub = layout.row() - sub.enabled = context.blend_data.is_saved - sub.operator("wm.save_mainfile", text="Save Incremental").incremental = True - layout.operator_context = 'INVOKE_AREA' layout.operator("wm.save_as_mainfile", text="Save As...") layout.operator_context = 'INVOKE_AREA' layout.operator("wm.save_as_mainfile", text="Save Copy...").copy = True + sub = layout.row() + sub.enabled = context.blend_data.is_saved + sub.operator_context = 'EXEC_AREA' + sub.operator("wm.save_mainfile", text="Save Incremental").incremental = True + layout.separator() layout.operator_context = 'INVOKE_AREA'