mirror of https://github.com/AxioDL/metaforce.git
Add Help->ImGui->Clear Settings
This commit is contained in:
parent
6be1eb958c
commit
7fcbd30c1b
|
@ -188,8 +188,12 @@ private:
|
||||||
as->specialKeyDown(key, mods, isRepeat);
|
as->specialKeyDown(key, mods, isRepeat);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (key == boo::ESpecialKey::Enter && True(mods & boo::EModifierKey::Alt)) {
|
if (True(mods & boo::EModifierKey::Alt)) {
|
||||||
m_fullscreenToggleRequested = true;
|
if (key == boo::ESpecialKey::Enter) {
|
||||||
|
m_fullscreenToggleRequested = true;
|
||||||
|
} else if (key == boo::ESpecialKey::F4) {
|
||||||
|
m_windowInvalid = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
m_imguiCallback.specialKeyDown(key, mods, isRepeat);
|
m_imguiCallback.specialKeyDown(key, mods, isRepeat);
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
|
|
||||||
#include "ImGuiEngine.hpp"
|
#include "ImGuiEngine.hpp"
|
||||||
|
|
||||||
|
namespace ImGui {
|
||||||
|
// Internal functions
|
||||||
|
void ClearIniSettings();
|
||||||
|
}
|
||||||
|
|
||||||
#include "TCastTo.hpp" // Generated file, do not modify include path
|
#include "TCastTo.hpp" // Generated file, do not modify include path
|
||||||
|
|
||||||
namespace metaforce {
|
namespace metaforce {
|
||||||
|
@ -586,8 +591,6 @@ void ImGuiConsole::ShowAppMainMenuBar(bool canInspect) {
|
||||||
ImGui::MenuItem("Inspect", nullptr, &m_showInspectWindow, canInspect);
|
ImGui::MenuItem("Inspect", nullptr, &m_showInspectWindow, canInspect);
|
||||||
ImGui::MenuItem("Items", nullptr, &m_showItemsWindow, canInspect);
|
ImGui::MenuItem("Items", nullptr, &m_showItemsWindow, canInspect);
|
||||||
ImGui::MenuItem("Layers", nullptr, &m_showLayersWindow, canInspect);
|
ImGui::MenuItem("Layers", nullptr, &m_showLayersWindow, canInspect);
|
||||||
ImGui::Separator();
|
|
||||||
ImGui::MenuItem("Demo", nullptr, &m_showDemoWindow);
|
|
||||||
ImGui::EndMenu();
|
ImGui::EndMenu();
|
||||||
}
|
}
|
||||||
if (ImGui::BeginMenu("Debug")) {
|
if (ImGui::BeginMenu("Debug")) {
|
||||||
|
@ -623,6 +626,14 @@ void ImGuiConsole::ShowAppMainMenuBar(bool canInspect) {
|
||||||
ImGui::Spacing();
|
ImGui::Spacing();
|
||||||
if (ImGui::BeginMenu("Help")) {
|
if (ImGui::BeginMenu("Help")) {
|
||||||
ImGui::MenuItem("About", nullptr, &m_showAboutWindow);
|
ImGui::MenuItem("About", nullptr, &m_showAboutWindow);
|
||||||
|
ImGui::Separator();
|
||||||
|
if (ImGui::BeginMenu("ImGui")) {
|
||||||
|
if (ImGui::MenuItem("Clear Settings")) {
|
||||||
|
ImGui::ClearIniSettings();
|
||||||
|
}
|
||||||
|
ImGui::MenuItem("Show Demo", nullptr, &m_showDemoWindow);
|
||||||
|
ImGui::EndMenu();
|
||||||
|
}
|
||||||
ImGui::EndMenu();
|
ImGui::EndMenu();
|
||||||
}
|
}
|
||||||
ImGui::EndMainMenuBar();
|
ImGui::EndMainMenuBar();
|
||||||
|
|
Loading…
Reference in New Issue