Skip to content

Commit 926addb

Browse files
committed
Clipper: fixed invalid state when number of frozen table row is smaller than ItemCount.
+ Bonus rather unorthodox coding style.
1 parent 027a7ba commit 926addb

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/CHANGELOG.txt

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Other Changes:
7474
(an additional ItemSpacing.y was declared, affecting scrollbar range).
7575
- Clipper: various and incomplete changes to tame down scrolling and precision issues on very large ranges.
7676
Passing an explicit height to the clipper now allows larger ranges. (#3609, #3962).
77+
- Clipper: fixed invalid state when number of frozen table row is smaller than ItemCount.
7778
- Drag and Drop: BeginDragDropSource() with ImGuiDragDropFlags_SourceAllowNullID doesn't lose
7879
tooltip when scrolling. (#143)
7980
- Metrics: Added a node showing windows in submission order and showing the Begin() stack.

imgui.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -2435,17 +2435,16 @@ bool ImGuiListClipper::Step()
24352435

24362436
// No items
24372437
if (ItemsCount == 0 || GetSkipItemForListClipping())
2438-
{
2439-
End();
2440-
return false;
2441-
}
2438+
return (void)End(), false;
24422439

24432440
// While we are in frozen row state, keep displaying items one by one, unclipped
24442441
// FIXME: Could be stored as a table-agnostic state.
24452442
if (data->StepNo == 0 && table != NULL && !table->IsUnfrozenRows)
24462443
{
24472444
DisplayStart = data->ItemsFrozen;
24482445
DisplayEnd = data->ItemsFrozen + 1;
2446+
if (DisplayStart >= ItemsCount)
2447+
return (void)End(), false;
24492448
data->ItemsFrozen++;
24502449
return true;
24512450
}
@@ -2461,6 +2460,8 @@ bool ImGuiListClipper::Step()
24612460
data->Ranges.push_front(ImGuiListClipperRange::FromIndices(data->ItemsFrozen, data->ItemsFrozen + 1));
24622461
DisplayStart = ImMax(data->Ranges[0].Min, data->ItemsFrozen);
24632462
DisplayEnd = ImMin(data->Ranges[0].Max, ItemsCount);
2463+
if (DisplayStart == DisplayEnd)
2464+
return (void)End(), false;
24642465
data->StepNo = 1;
24652466
return true;
24662467
}

0 commit comments

Comments
 (0)