1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Fixed calling SetNextWindowSize()/SetWindowSize() with non-integer values leading to accidental alteration of window position. We now round the provided size. (#2067)

This commit is contained in:
omar 2018-09-07 22:30:46 +02:00
parent 2eaf722fd7
commit 062b1f0463
2 changed files with 5 additions and 3 deletions

View file

@ -37,6 +37,8 @@ Other Changes:
- Fixed calling DestroyContext() always saving .ini data with the current context instead
of the supplied context pointer. (#2066)
- Fixed calling SetNextWindowSize()/SetWindowSize() with non-integer values leading to
accidental alteration of window position. We now round the provided size. (#2067)
-----------------------------------------------------------------------