You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to clear the internal config in ImGui because I have multiple sets of INI config that I can load and save in real-time.
This all works well for most cases, however I'm not sure what to do in the following scenario:
a) When I have a saved config that does not contain layout for a window X, and I load that config, then ideally, I want that window to revert to FirstUseEver state.
b) Failing that, I can live with it if that the window remains at the size/position it is after loading the config that did not contain metrics for that window. - However, I find that if that window was docked, then it gets undocked (even though the initial state at creation was docked and it weas never undocked).
I've tried using the internal ImGui::ClearIniSettings() call, or ImGui::LoadIniSettingsFromMemory("") but neither work for me.
Is there something else I can try? Or is the desired behavior impossible?
Screenshots/Video:
No response
Minimal, Complete and Verifiable Example code:
No response
The text was updated successfully, but these errors were encountered:
I'll try to investigate and sort out a design later, but by the way, a perfectly acceptable technique may also be to simply destroy and recreate an imgui context as well. If you can keep the atlas around it should be unnoticeable.
Version/Branch of Dear ImGui:
1.91.9 WIP - docking
Back-ends:
win32 dx11 / (Linux/EmSDK) sdl2 / opengl3
Compiler, OS:
GCC / MSVC
Full config/build information:
Details:
I'm trying to clear the internal config in ImGui because I have multiple sets of INI config that I can load and save in real-time.
This all works well for most cases, however I'm not sure what to do in the following scenario:
a) When I have a saved config that does not contain layout for a window X, and I load that config, then ideally, I want that window to revert to FirstUseEver state.
b) Failing that, I can live with it if that the window remains at the size/position it is after loading the config that did not contain metrics for that window. - However, I find that if that window was docked, then it gets undocked (even though the initial state at creation was docked and it weas never undocked).
I've tried using the internal
ImGui::ClearIniSettings()
call, orImGui::LoadIniSettingsFromMemory("")
but neither work for me.Is there something else I can try? Or is the desired behavior impossible?
Screenshots/Video:
No response
Minimal, Complete and Verifiable Example code:
No response
The text was updated successfully, but these errors were encountered: