mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Tables: Moved TableSetupScrollFreeze(), TableUpdateDrawChannels() lower in more adequate spots.
+ rename IsFreezeRowsPassed to IsUnfrozen.
This commit is contained in:
parent
d9ca3939e1
commit
d3222086f0
3 changed files with 65 additions and 65 deletions
|
|
@ -2276,7 +2276,7 @@ bool ImGuiListClipper::Step()
|
|||
{
|
||||
// While we are in frozen row state, keep displaying items one by one, unclipped
|
||||
// FIXME: Could be stored as a table-agnostic state.
|
||||
if (table != NULL && !table->IsFreezeRowsPassed)
|
||||
if (table != NULL && !table->IsUnfrozen)
|
||||
{
|
||||
DisplayStart = ItemsFrozen;
|
||||
DisplayEnd = ItemsFrozen + 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue