Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docking state lost on subsequent INI loads #8518

Open
lailoken opened this issue Mar 24, 2025 · 3 comments
Open

Docking state lost on subsequent INI loads #8518

lailoken opened this issue Mar 24, 2025 · 3 comments
Labels
docking settings .ini persistance

Comments

@lailoken
Copy link

Version/Branch of Dear ImGui:

1.92.0 WIP

Back-ends:

win dx11 / linux sd2 opengl3

Compiler, OS:

any

Full config/build information:

Dear ImGui 1.92.0 WIP (19191)
--------------------------------
sizeof(size_t): 8, sizeof(ImDrawIdx): 4, sizeof(ImDrawVert): 20
define: __cplusplus=199711
define: IMGUI_DISABLE_OBSOLETE_FUNCTIONS
define: _WIN32
define: _WIN64
define: _MSC_VER=1940
define: _MSVC_LANG=202002
define: IMGUI_HAS_VIEWPORT
define: IMGUI_HAS_DOCK
--------------------------------
io.BackendPlatformName: imgui_impl_win32
io.BackendRendererName: imgui_impl_dx11
io.ConfigFlags: 0x0000C081
 NavEnableKeyboard
 DockingEnable
 DpiEnableScaleViewports
 DpiEnableScaleFonts
io.ConfigViewportsNoDecoration
io.ConfigDockingWithShift
io.ConfigNavCaptureKeyboard
io.ConfigInputTextCursorBlink
io.ConfigWindowsResizeFromEdges
io.ConfigMemoryCompactTimer = 60.0
io.BackendFlags: 0x00001C0E
 HasMouseCursors
 HasSetMousePos
 PlatformHasViewports
 HasMouseHoveredViewport
 RendererHasVtxOffset
 RendererHasViewports
--------------------------------
io.Fonts: 10 fonts, Flags: 0x00000000, TexSize: 1024,2048
io.DisplaySize: 1814.00,1177.00
io.DisplayFramebufferScale: 1.00,1.00
--------------------------------
style.WindowPadding: 8.00,8.00
style.WindowBorderSize: 1.00
style.FramePadding: 4.00,3.00
style.FrameRounding: 0.00
style.FrameBorderSize: 0.00
style.ItemSpacing: 8.00,4.00
style.ItemInnerSpacing: 4.00,4.00

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:

        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();
        }
@ocornut ocornut added docking settings .ini persistance labels Mar 24, 2025
@ocornut
Copy link
Owner

ocornut commented Mar 24, 2025

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 before NewFrame() makes a difference.

@lailoken
Copy link
Author

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.

@ocornut
Copy link
Owner

ocornut commented Mar 24, 2025

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.

@ocornut ocornut reopened this Mar 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docking settings .ini persistance
Projects
None yet
Development

No branches or pull requests

2 participants