@ -214,8 +214,8 @@
Also read releases logs https : //github.com/ocornut/imgui/releases for more details.
- 2017 / 12 / 13 ( 1.53 ) - renamed GetItemsLineHeightWithSpacing ( ) to GetFrameHeightWithSpacing ( ) . Kept redirection function ( will obsolete ) .
- 2017 / 12 / 13 ( 1.53 ) - mark ed IsRootWindowFocused ( ) as obsolete in favor of using IsWindowFocused ( ImGuiFocusedFlags_RootWindow ) . Kept redirection function ( will obsolete ) .
- mark ed IsRootWindowOrAnyChildFocused ( ) as obsolete in favor of using IsWindowFocused ( ImGuiFocusedFlags_RootAndChildWindows ) . Kept redirection function ( will obsolete ) .
- 2017 / 12 / 13 ( 1.53 ) - obsolet ed IsRootWindowFocused ( ) in favor of using IsWindowFocused ( ImGuiFocusedFlags_RootWindow ) . Kept redirection function ( will obsolete ) .
- obsolet ed IsRootWindowOrAnyChildFocused ( ) in favor of using IsWindowFocused ( ImGuiFocusedFlags_RootAndChildWindows ) . Kept redirection function ( will obsolete ) .
- 2017 / 12 / 12 ( 1.53 ) - renamed ImGuiTreeNodeFlags_AllowOverlapMode to ImGuiTreeNodeFlags_AllowItemOverlap . Kept redirection enum ( will obsolete ) .
- 2017 / 12 / 10 ( 1.53 ) - removed SetNextWindowContentWidth ( ) , prefer using SetNextWindowContentSize ( ) . Kept redirection function ( will obsolete ) .
- 2017 / 11 / 27 ( 1.53 ) - renamed ImGuiTextBuffer : : append ( ) helper to appendf ( ) , appendv ( ) to appendfv ( ) . If you copied the ' Log ' demo in your code , it uses appendv ( ) so that needs to be renamed .
@ -224,7 +224,7 @@
- 2017 / 11 / 18 ( 1.53 ) - Style : removed ImGuiCol_ComboBg in favor of combo boxes using ImGuiCol_PopupBg for consistency .
- 2017 / 11 / 18 ( 1.53 ) - Style : renamed ImGuiCol_ChildWindowBg to ImGuiCol_ChildBg .
- 2017 / 11 / 18 ( 1.53 ) - Style : renamed style . ChildWindowRounding to style . ChildRounding , ImGuiStyleVar_ChildWindowRounding to ImGuiStyleVar_ChildRounding .
- 2017 / 11 / 02 ( 1.53 ) - mark ed IsRootWindowOrAnyChildHovered ( ) as obsolete is favor of using IsWindowHovered ( ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ ChildWindows ) ;
- 2017 / 11 / 02 ( 1.53 ) - obsolet ed IsRootWindowOrAnyChildHovered ( ) in favor of using IsWindowHovered ( ImGuiHoveredFlags_RootAnd ChildWindows ) ;
- 2017 / 10 / 24 ( 1.52 ) - renamed IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS / IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS to IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS / IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS for consistency .
- 2017 / 10 / 20 ( 1.52 ) - changed IsWindowHovered ( ) default parameters behavior to return false if an item is active in another window ( e . g . click - dragging item from another window to this window ) . You can use the newly introduced IsWindowHovered ( ) flags to requests this specific behavior if you need it .
- 2017 / 10 / 20 ( 1.52 ) - marked IsItemHoveredRect ( ) / IsMouseHoveringWindow ( ) as obsolete , in favor of using the newly introduced flags for IsItemHovered ( ) and IsWindowHovered ( ) . See https : //github.com/ocornut/imgui/issues/1382 for details.