mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-13 00:24:20 +00:00
BeginPopupModal() doesn't set the ImGuiWindowFlags_NoSavedSettings flag anymore, and will not always be auto-centered. (#915, #3091)
# Conflicts: # imgui.cpp
This commit is contained in:
parent
76e40fe5d1
commit
a616ff5d4a
3 changed files with 14 additions and 4 deletions
|
|
@ -127,6 +127,10 @@ Other Changes:
|
|||
would attempt to focus it and close other popups. (#2880)
|
||||
- Popups: Fix BeginPopupContextVoid() when clicking over the area made unavailable by a modal. (#1636)
|
||||
- Popups: Clarified some of the comments and function prototypes.
|
||||
- Modals: BeginPopupModal() doesn't set the ImGuiWindowFlags_NoSavedSettings flag anymore, and will
|
||||
not always be auto-centered. Note that modals are more similar to regular windows than they are to
|
||||
popups, so api and behavior may evolve further toward embracing this. (#915, #3091)
|
||||
Enforce centering using e.g. SetNextWindowPos(io.DisplaySize * 0.5f, ImGuiCond_Appearing, ImVec2(0.5f,0.5f)).
|
||||
- Metrics: Added a "Settings" section with some details about persistent ini settings.
|
||||
- Nav, Menus: Fix vertical wrap-around in menus or popups created with multiple appending calls to
|
||||
BeginMenu()/EndMenu() or BeginPopup/EndPopup(). (#3223, #1207) [@rokups]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue