File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ Other Changes:
74
74
(an additional ItemSpacing.y was declared, affecting scrollbar range).
75
75
- Clipper: various and incomplete changes to tame down scrolling and precision issues on very large ranges.
76
76
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.
77
78
- Drag and Drop: BeginDragDropSource() with ImGuiDragDropFlags_SourceAllowNullID doesn't lose
78
79
tooltip when scrolling. (#143)
79
80
- Metrics: Added a node showing windows in submission order and showing the Begin() stack.
Original file line number Diff line number Diff line change @@ -2435,17 +2435,16 @@ bool ImGuiListClipper::Step()
2435
2435
2436
2436
// No items
2437
2437
if (ItemsCount == 0 || GetSkipItemForListClipping())
2438
- {
2439
- End();
2440
- return false;
2441
- }
2438
+ return (void)End(), false;
2442
2439
2443
2440
// While we are in frozen row state, keep displaying items one by one, unclipped
2444
2441
// FIXME: Could be stored as a table-agnostic state.
2445
2442
if (data->StepNo == 0 && table != NULL && !table->IsUnfrozenRows)
2446
2443
{
2447
2444
DisplayStart = data->ItemsFrozen;
2448
2445
DisplayEnd = data->ItemsFrozen + 1;
2446
+ if (DisplayStart >= ItemsCount)
2447
+ return (void)End(), false;
2449
2448
data->ItemsFrozen++;
2450
2449
return true;
2451
2450
}
@@ -2461,6 +2460,8 @@ bool ImGuiListClipper::Step()
2461
2460
data->Ranges.push_front(ImGuiListClipperRange::FromIndices(data->ItemsFrozen, data->ItemsFrozen + 1));
2462
2461
DisplayStart = ImMax(data->Ranges[0].Min, data->ItemsFrozen);
2463
2462
DisplayEnd = ImMin(data->Ranges[0].Max, ItemsCount);
2463
+ if (DisplayStart == DisplayEnd)
2464
+ return (void)End(), false;
2464
2465
data->StepNo = 1;
2465
2466
return true;
2466
2467
}
You can’t perform that action at this time.
0 commit comments