DIRECTOR: DEBUGGER: Moved Settings menu item to the bottom

This commit is contained in:
Eugene Sandulenko 2024-05-30 02:08:43 +02:00
parent 49d0d24968
commit fff73c3cac
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -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();
}