From fff73c3cac268c5eb6ff2519bd6980050c82eced Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Thu, 30 May 2024 02:08:43 +0200 Subject: [PATCH] DIRECTOR: DEBUGGER: Moved Settings menu item to the bottom --- engines/director/debugtools.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engines/director/debugtools.cpp b/engines/director/debugtools.cpp index 458d6439567..c042e4c84a9 100644 --- a/engines/director/debugtools.cpp +++ b/engines/director/debugtools.cpp @@ -3536,7 +3536,6 @@ void onImGuiRender() { ImGui::MenuItem("CallStack", NULL, &_state->_w.callStack); ImGui::MenuItem("Breakpoints", NULL, &_state->_w.bpList); ImGui::MenuItem("Vars", NULL, &_state->_w.vars); - ImGui::MenuItem("Settings", NULL, &_state->_w.settings); ImGui::MenuItem("Logger", NULL, &_state->_w.logger); ImGui::MenuItem("Archive", NULL, &_state->_w.archive); @@ -3545,6 +3544,8 @@ void onImGuiRender() { } if (ImGui::MenuItem("Load state")) { } + ImGui::Separator(); + ImGui::MenuItem("Settings", NULL, &_state->_w.settings); ImGui::EndMenu(); }