| 18769 | } |
| 18770 | |
| 18771 | static void ImGui::DockNodeApplyPosSizeToWindows(ImGuiDockNode* node) |
| 18772 | { |
| 18773 | for (ImGuiWindow* window : node->Windows) |
| 18774 | { |
| 18775 | SetWindowPos(window, node->Pos, ImGuiCond_Always); // We don't assign directly to Pos because it can break the calculation of SizeContents on next frame |
| 18776 | SetWindowSize(window, node->Size, ImGuiCond_Always); |
| 18777 | } |
| 18778 | } |
| 18779 | |
| 18780 | static void ImGui::DockNodeHideHostWindow(ImGuiDockNode* node) |
| 18781 | { |
nothing calls this directly
no outgoing calls
no test coverage detected