From 38950d7e8ce56e7ebe2408f0ef5551867929ff3e Mon Sep 17 00:00:00 2001 From: Antonio Abbatangelo <contact@antangelo.com> Date: Sun, 1 Oct 2023 02:58:45 -0400 Subject: [PATCH] ui: Apply correct snapshot activation action for save menuitem --- ui/xui/menubar.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/xui/menubar.cc b/ui/xui/menubar.cc index 9ce8a4a0c7..2afcc367c5 100644 --- a/ui/xui/menubar.cc +++ b/ui/xui/menubar.cc @@ -120,7 +120,7 @@ void ShowMainMenu() } if (ImGui::MenuItem(save_name, hotkey, false, bound)) { - ActionActivateBoundSnapshot(i, false); + ActionActivateBoundSnapshot(i, true); } g_free(hotkey);