From 5c2160ac85fd24f0e426e970966af9cd979edac8 Mon Sep 17 00:00:00 2001 From: ocornut Date: Fri, 3 Jul 2026 16:56:38 +0200 Subject: [PATCH] Settings, IO: move ConfigDebugIniSettings in same section. --- imgui.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/imgui.h b/imgui.h index 59aba2875..f6ac7773f 100644 --- a/imgui.h +++ b/imgui.h @@ -2439,6 +2439,7 @@ struct ImGuiIO // Ini Settings bool ConfigIniSettingsSaveLastUsedDate;// = true // Enable loading/saving last used day (YYYYMMDD) in some .ini struct, making things easier to audit and allowing custom tools to cleanup old data. int ConfigIniSettingsAutoDiscardMonths; // = 0 // [BETA] Set number of months after which unused .ini entries are discarded on load. Require platform_io.Platform_SessionDate to be set. For systems supporting the feature, .ini entries without a LastUsed field will always be discarded! Please report if you are using this. + bool ConfigDebugIniSettings; // = false // Save .ini data with extra comments (particularly helpful for Docking, but makes saving slower) // Miscellaneous options // (you can visualize and interact with all options in 'Demo->Configuration') @@ -2511,9 +2512,6 @@ struct ImGuiIO // - Backends may have other side-effects on focus loss, so this will reduce side-effects but not necessary remove all of them. bool ConfigDebugIgnoreFocusLoss; // = false // Ignore io.AddFocusEvent(false), consequently not calling io.ClearInputKeys()/io.ClearInputMouse() in input processing. - // Option to audit .ini data - bool ConfigDebugIniSettings; // = false // Save .ini data with extra comments (particularly helpful for Docking, but makes saving slower) - //------------------------------------------------------------------ // Platform Identifiers // (the imgui_impl_xxxx backend files are setting those up for you)