mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[wpigui] Change maximized to bool
This commit is contained in:
@@ -96,8 +96,8 @@ static void IniWriteAll(ImGuiContext* ctx, ImGuiSettingsHandler* handler,
|
||||
out_buf->appendf(
|
||||
"[MainWindow][GLOBAL]\nwidth=%d\nheight=%d\nmaximized=%d\n"
|
||||
"xpos=%d\nypos=%d\nuserScale=%d\nstyle=%d\n\n",
|
||||
gContext->width, gContext->height, gContext->maximized, gContext->xPos,
|
||||
gContext->yPos, gContext->userScale, gContext->style);
|
||||
gContext->width, gContext->height, gContext->maximized ? 1 : 0,
|
||||
gContext->xPos, gContext->yPos, gContext->userScale, gContext->style);
|
||||
}
|
||||
|
||||
void gui::CreateContext() {
|
||||
|
||||
Reference in New Issue
Block a user