Tables: Fix hiding column right after the frozen line. Fix hovering/resising column delimiter scrolled under frozen columns. (#3678)

This commit is contained in:
ocornut
2021-01-03 15:10:35 +01:00
parent 1c1d3b7ab5
commit 0a5f399805
3 changed files with 19 additions and 11 deletions

View File

@ -2286,7 +2286,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->IsUnfrozen)
if (table != NULL && !table->IsUnfrozenRows)
{
DisplayStart = ItemsFrozen;
DisplayEnd = ItemsFrozen + 1;