ProgressBar: Fixed passing fraction==NaN from leading to a crash. (#7451)

This commit is contained in:
ocornut
2024-03-29 19:09:55 +09:00
parent 9638c2839a
commit 25a492f330
2 changed files with 7 additions and 3 deletions

View File

@@ -70,6 +70,7 @@ Other changes:
frames would erroneously close the window. While it is technically a popup issue
it would generally manifest when fast moving the mouse bottom to top in a sub-menu.
(#7325, #7287, #7063)
- ProgressBar: Fixed passing fraction==NaN from leading to a crash. (#7451)
- Style: Added ImGuiStyleVar_TabBorderSize, ImGuiStyleVar_TableAngledHeadersAngle for
consistency. (#7411) [@cfillion]
- DrawList: Added AddConcavePolyFilled(), PathFillConcave() concave filling. (#760) [@thedmd]