mirror of
https://github.com/ocornut/imgui.git
synced 2026-09-26 16:05:45 +03:00
Merge 06a392619d into 3bae66c735
This commit is contained in:
commit
ab7e6a029a
1 changed files with 2 additions and 1 deletions
|
|
@ -19095,8 +19095,9 @@ static void ImGui::DockNodeMoveWindows(ImGuiDockNode* dst_node, ImGuiDockNode* s
|
|||
for (ImGuiWindow* window : src_node->Windows)
|
||||
{
|
||||
window->DockNode = NULL;
|
||||
window->DockIsActive = false;
|
||||
const bool dock_is_active = window->DockIsActive;
|
||||
DockNodeAddWindow(dst_node, window, !move_tab_bar);
|
||||
window->DockIsActive |= dock_is_active;
|
||||
}
|
||||
src_node->Windows.clear();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue