@@ -67,17 +67,16 @@ Breaking changes:
67
67
68
68
Other changes:
69
69
70
- - Tooltips: made using SetItemTooltip()/IsItemHovered(ImGuiHoveredFlags_ForTooltip) defaults to
71
- activate tooltips on disabled items. This is done by adding ImGuiHoveredFlags_AllowWhenDisabled
72
- to the default value of style.HoverFlagsForTooltipMouse/HoverFlagsForTooltipNav. (#1485)
73
- - Tooltips: made is possible to combine ImGuiHoveredFlags_ForTooltip with a ImGuiHoveredFlags_DelayXXX
74
- override. (#1485)
75
70
- Nav: Tabbing always enable nav highlight when ImGuiConfigFlags_NavEnableKeyboard is set.
76
71
Previously was inconsistent and only enabled when stepping through a non-input item.
77
72
(#6802, #3092, #5759, #787)
78
- - Separator(): Altered end-points to use more standard boundaries. (#205, #4787, #1643)
79
- - Left position is always current cursor X position.
80
- - Right position is always work-rect rightmost edge.
73
+ - Windows:
74
+ - Popups: clarified meaning of 'p_open != NULL' in BeginPopupModal() + set back user value
75
+ to false when popup is closed in ways other than clicking the close button. (#6900)
76
+ - Separators:
77
+ - Altered end-points to use more standard boundaries. (#205, #4787, #1643)
78
+ Left position is always current cursor X position.
79
+ Right position is always work-rect rightmost edge.
81
80
- Effectively means that:
82
81
- A separator in the root of a window will end up a little more distant from edges
83
82
than previously (essentially following WindowPadding instead of clipping edges).
@@ -89,13 +88,17 @@ Other changes:
89
88
- Mostly legacy behavior when used inside old Columns(), as we favored that idiom back then,
90
89
only different is left position follows indentation level, to match calling a Separator()
91
90
inside or outside Columns().
92
- - Popups: clarified meaning of 'p_open != NULL' in BeginPopupModal() + set back user value
93
- to false when popup is closed in ways other than clicking the close button. (#6900)
94
- - Drag and Drop: Rework drop target highlight: reduce rectangle to its visible portion, and
95
- then expand slightly. A full rectangle is always visible and it may protrude slightly. (#4281, #3272)
96
- - Drag and Drop: Fixed submitting a tooltip from drop target location when using AcceptDragDropPayload()
97
- with ImGuiDragDropFlags_AcceptNoPreviewTooltip and submitting a tooltip manually.
98
- - TreeNode: Added ImGuiTreeNodeFlags_SpanAllColumns for use in tables. (#3151, #3565, #2451, #2438)
91
+ - Tooltips:
92
+ - Made using SetItemTooltip()/IsItemHovered(ImGuiHoveredFlags_ForTooltip) defaults to
93
+ activate tooltips on disabled items. This is done by adding ImGuiHoveredFlags_AllowWhenDisabled
94
+ to the default value of style.HoverFlagsForTooltipMouse/HoverFlagsForTooltipNav. (#1485)
95
+ - Made is possible to combine ImGuiHoveredFlags_ForTooltip with a ImGuiHoveredFlags_DelayXXX
96
+ override. (#1485)
97
+ - Drag and Drop:
98
+ - Reworked drop target highlight: reduce rectangle to its visible portion, and
99
+ then expand slightly. A full rectangle is always visible and it may protrude slightly. (#4281, #3272)
100
+ - Fixed submitting a tooltip from drop target location when using AcceptDragDropPayload()
101
+ with ImGuiDragDropFlags_AcceptNoPreviewTooltip and submitting a tooltip manually.
99
102
- Tables:
100
103
- Added angled headers support. You need to set ImGuiTableColumnFlags_AngledHeader on selected
101
104
columns and call TableAngledHeadersRow(). Added style.TableAngledHeadersAngle style option.
@@ -112,15 +115,15 @@ Other changes:
112
115
in some situations, causing the earlier to be visible underneath when alpha is not 1.0f.
113
116
- Fixed right-clicking right-most section (past right-most column) from highlighting a column.
114
117
- Fixed an issue with ScrollX enabled where an extraneous draw command would be created.
118
+ - Menus:
119
+ - Menus: Fixed a bug where activating an item in a child-menu and dragging mouse over the
120
+ parent-menu would erroneously close the child-menu. (Regression from 1.88). (#6869)
121
+ - MenuBar: Fixed an issue where layouting an item in the menu-bar would erroneously
122
+ register contents size in a way that would affect the scrolling layer.
123
+ Was most often noticable when using an horizontal scrollbar. (#6789)
124
+ - TreeNode: Added ImGuiTreeNodeFlags_SpanAllColumns for use in tables. (#3151, #3565, #2451, #2438)
115
125
- TabBar: Fixed position of unsaved document marker (ImGuiTabItemFlags_UnsavedDocument) which was
116
126
accidentally offset in 1.89.9. (#6862) [@alektron]
117
- - Fonts: 'float size_pixels' passed to AddFontXXX() functions is now rounded to lowest integer.
118
- This is because our layout/font system currently doesn't fully support non-integer sizes. Until
119
- it does, this has been a common pitfall leading to more or less subtle issues. (#3164, #3309, #6800)
120
- - Fonts: Better assert during load when passing truncated font data or wrong data size. (#6822)
121
- - Fonts: Ensure calling AddFontXXX function doesn't invalidates ImFont's ConfigData pointers
122
- prior to building again. (#6825)
123
- - Fonts, imgui_freetype: Fixed a warning and leak in IMGUI_ENABLE_FREETYPE_LUNASVG support. (#6842, #6591)
124
127
- InputTextMultiline: Fixed a crash pressing Down on last empty line of a multiline buffer.
125
128
(regression from 1.89.2, only happened in some states). (#6783, #6000)
126
129
- InputTextMultiline: Fixed Tabbing cycle leading to a situation where Enter key wouldn't
@@ -129,11 +132,14 @@ Other changes:
129
132
to SameLine() followed by manual cursor manipulation.
130
133
- BeginCombo(): Added ImGuiComboFlags_WidthFitPreview flag. (#6881) [@mpv-enjoyer]
131
134
- BeginListBox(): Fixed not consuming SetNextWindowXXX data when returning false.
132
- - Menus: Fixed a bug where activating an item in a child-menu and dragging mouse over the
133
- parent-menu would erroneously close the child-menu. (Regression from 1.88). (#6869)
134
- - MenuBar: Fixed an issue where layouting an item in the menu-bar would erroneously
135
- register contents size in a way that would affect the scrolling layer.
136
- Was most often noticable when using an horizontal scrollbar. (#6789)
135
+ - Fonts:
136
+ - Arument 'float size_pixels' passed to AddFontXXX() functions is now rounded to lowest integer.
137
+ This is because our layout/font system currently doesn't fully support non-integer sizes. Until
138
+ it does, this has been a common pitfall leading to more or less subtle issues. (#3164, #3309, #6800)
139
+ - Better assert during load when passing truncated font data or wrong data size. (#6822)
140
+ - Ensure calling AddFontXXX function doesn't invalidates ImFont's ConfigData pointers
141
+ prior to building again. (#6825)
142
+ - imgui_freetype: Fixed a warning and leak in IMGUI_ENABLE_FREETYPE_LUNASVG support. (#6842, #6591)
137
143
- Misc: Most text functions also treat "%.*s" (along with "%s") specially to avoid formatting. (#3466, #6846)
138
144
- IO: Add extra keys to ImGuiKey enum: ImGuiKey_F13 to ImGuiKey_F24. (#6891, #4921)
139
145
- IO: Add extra keys to ImGuiKey enum: ImGuiKey_AppBack, ImGuiKey_AppForward. (#4921)
0 commit comments