Viewports: Made it possible to explicitly assign ImGuiWindowClass::ParentViewportId to 0. (#3152, #2871)

This commit is contained in:
ocornut
2021-11-16 01:02:25 +01:00
parent dc8c3618e8
commit 2080d12bd9
3 changed files with 6 additions and 3 deletions

View File

@ -154,6 +154,9 @@ Other Changes:
Docking+Viewports Branch:
- Viewports: Made it possible to explicitly assign ImGuiWindowClass::ParentViewportId to 0 in order
to ensure a window is not parented. Previously this would use the global default (which might be 0,
but not always as it would depend on io.ConfigViewportsNoDefaultParent). (#3152, #2871)
- Disabled: Fixed nested BeginDisabled()/EndDisabled() bug in Docking branch due to bad merge. (#4655, #4452, #4453, #4462)