mirror of
https://github.com/ocornut/imgui.git
synced 2026-02-02 10:04:31 +00:00
TreeNode: fixed non-opened clipped child node not moving Y2 marker. (#2920)
This commit is contained in:
@@ -7649,7 +7649,7 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags)
|
||||
window->DC.MenuBarAppending = false;
|
||||
window->DC.MenuColumns.Update(style.ItemSpacing.x, window_just_activated_by_user);
|
||||
window->DC.TreeDepth = 0;
|
||||
window->DC.TreeHasStackDataDepthMask = 0x00;
|
||||
window->DC.TreeHasStackDataDepthMask = window->DC.TreeRecordsClippedNodesY2Mask = 0x00;
|
||||
window->DC.ChildWindows.resize(0);
|
||||
window->DC.StateStorage = &window->StateStorage;
|
||||
window->DC.CurrentColumns = NULL;
|
||||
|
||||
Reference in New Issue
Block a user