From 7a45547ad9f72ea35e1a799d3e60f8665012f4c5 Mon Sep 17 00:00:00 2001 From: Nathan Date: Tue, 3 Feb 2026 21:21:27 -0600 Subject: [PATCH] attempt multi-viewports --- modules/Archimedes-Modules/{README.md => Example_Modules.md} | 0 modules/ImguiModule/ImguiModule.cpp | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename modules/Archimedes-Modules/{README.md => Example_Modules.md} (100%) diff --git a/modules/Archimedes-Modules/README.md b/modules/Archimedes-Modules/Example_Modules.md similarity index 100% rename from modules/Archimedes-Modules/README.md rename to modules/Archimedes-Modules/Example_Modules.md diff --git a/modules/ImguiModule/ImguiModule.cpp b/modules/ImguiModule/ImguiModule.cpp index 7bf5a82..8accfa5 100644 --- a/modules/ImguiModule/ImguiModule.cpp +++ b/modules/ImguiModule/ImguiModule.cpp @@ -51,7 +51,7 @@ void ImguiModule::onLoad() { io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls io.ConfigFlags |= ImGuiConfigFlags_DockingEnable; // Enable Docking - //io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable; // Enable Multi-Viewport / Platform Windows + io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable; // Enable Multi-Viewport / Platform Windows #ifdef CUSTOMFONT io.Fonts->AddFontFromFileTTF(STRINGIZE_VALUE_OF(CUSTOMFONT), 13.0f);