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
On initial load of the ini, the persisted docking state is loaded correctly. If that same load is triggered a second time, the docked nodes become undocked. (with nothing else changing)
I've created test code which load and saved into a static in-memory string, and can't get docking to work at all at this point. Docking state loading only seems to work on application start.
Screenshots/Video:
No response
Minimal, Complete and Verifiable Example code:
if (ImGui::Button("Store"))
{
savedIniConf = ImGui::SaveIniSettingsToMemory();
}
ImGui::SameLine();
ImGui::BeginDisabled(savedIniConf.empty());
if (ImGui::Button("Load"))
{
if (!savedIniConf.empty())
{
ImGui::LoadIniSettingsFromMemory(savedIniConf.c_str());
}
}
ImGui::EndDisabled();
ImGui::SameLine();
if (ImGui::Button("Empty"))
{
ImGui::LoadIniSettingsFromMemory("");
}
ImGui::SameLine();
if (ImGui::Button("Clear"))
{
ClearInMemoryWorkspace();
}
The text was updated successfully, but these errors were encountered:
Thanks for the report and repro.!
Docking is rather fragile to mid-frame changes, so the first thing you can do is: try to see if queuing your change to beforeNewFrame() makes a difference.
Thanks, that indeed fixed the issue. It seems our previous code to load config was outside the g.WithinFrameScope. However new code which detected multi-monitor changes reloaded new configs after detection, and this detection was inside the NewFrame EndFrame group.
Doing a deferred loading when this is detected fixed docking.
I'll temporarily reopen that, I would like to consider if it is possible to allow mid-frame loading and/or more thoroughly document that loading docking settings may have this constraint.
Version/Branch of Dear ImGui:
1.92.0 WIP
Back-ends:
win dx11 / linux sd2 opengl3
Compiler, OS:
any
Full config/build information:
Details:
On initial load of the ini, the persisted docking state is loaded correctly. If that same load is triggered a second time, the docked nodes become undocked. (with nothing else changing)
I've created test code which load and saved into a static in-memory string, and can't get docking to work at all at this point. Docking state loading only seems to work on application start.
Screenshots/Video:
No response
Minimal, Complete and Verifiable Example code:
The text was updated successfully, but these errors were encountered: