feat: enable stretching ImGui output based on frontend settings and adjust window sizes

This commit is contained in:
moonpower
2026-02-02 01:59:36 +03:00
parent 9a9d24cb62
commit 8cc51b8223
4 changed files with 46 additions and 13 deletions

View File

@@ -28,7 +28,11 @@ struct FrontendSettings {
WindowIcon icon = WindowIcon::Rpog;
std::string language = "en";
bool showImGuiDebugPanel = true;
#ifdef IMGUI_FRONTEND
bool stretchImGuiOutputToWindow = true;
#else
bool stretchImGuiOutputToWindow = false;
#endif
static Theme themeFromString(std::string inString);
static const char* themeToString(Theme theme);