Docking: Added an assert to clarify that ImGuiDockNodeFlags_CentralNode flag does not need to be passed to DockSpace(). (#8145)

This commit is contained in:
ocornut
2024-11-26 11:36:50 +01:00
parent dad1047b04
commit 14d213ca85
3 changed files with 9 additions and 2 deletions

View File

@@ -64,6 +64,9 @@ Other changes:
Docking+Viewports Branch:
- Docking: Added an assert to clarify that ImGuiDockNodeFlags_CentralNode flag
(from internals) does not need to be passed to DockSpace(), as it causes general
havoc. (#8145)
- Backends: Win32: Fixed a crash/regression in 1.91.5 when running two processes
with multi-viewports (was using GetProp() to query property which could have
belonged to another process). (#8162, #8069) [@sammyfreg, @ocornut]