Skip to content

Commit 2860d7b

Browse files
committed
Selectable: Fixed horizontal label alignment with SelectableTextAlign.x > 0 and specifying a selectable size. (ocornut#8338)
Regression from ed7551c
1 parent 474305c commit 2860d7b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/CHANGELOG.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ Breaking changes:
4747
Note that it was also added to ImGui_ImplVulkan_InitInfo but for the later it is optional.
4848
(#8326, #8365, #8400)
4949

50-
5150
Other changes:
5251

5352
- Fixed IsItemDeactivatedAfterEdit() signal being broken for Checkbox(),
@@ -71,6 +70,8 @@ Other changes:
7170
- Tables: tamed some .ini settings optimizations to more accurately allow
7271
overwriting/hot-reloading settings in more situations. (#7934)
7372
- Tables, Error Handling: Recovery from invalid index in TableSetColumnIndex(). (#1651)
73+
- Selectable: Fixed horizontal label alignment with SelectableTextAlign.x > 0 and
74+
specifying a selectable size. (#8338)
7475
- Styles, Tabs: made the Close Button of selected tabs always visible by default,
7576
without requiring to hover the tab. (#8387)
7677
- Added style.TabCloseButtonMinWidthSelected/TabCloseButtonMinWidthUnselected settings

imgui_widgets.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7101,7 +7101,7 @@ bool ImGui::Selectable(const char* label, bool selected, ImGuiSelectableFlags fl
71017101

71027102
// Text stays at the submission position. Alignment/clipping extents ignore SpanAllColumns.
71037103
if (is_visible)
7104-
RenderTextClipped(pos, ImVec2(window->WorkRect.Max.x, pos.y + size.y), label, NULL, &label_size, style.SelectableTextAlign, &bb);
7104+
RenderTextClipped(pos, ImVec2(ImMin(pos.x + size.x, window->WorkRect.Max.x), pos.y + size.y), label, NULL, &label_size, style.SelectableTextAlign, &bb);
71057105

71067106
// Automatically close popups
71077107
if (pressed && (window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiSelectableFlags_NoAutoClosePopups) && (g.LastItemData.ItemFlags & ImGuiItemFlags_AutoClosePopups))

0 commit comments

Comments
 (0)