mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 13:35:09 +00:00
parent
dabc990189
commit
c0308da665
1 changed files with 1 additions and 1 deletions
|
@ -1052,7 +1052,7 @@ void ImGui::TableUpdateLayout(ImGuiTable* table)
|
|||
ImGuiTableColumn* column = &table->Columns[column_n];
|
||||
|
||||
// Initial nav layer: using FreezeRowsCount, NOT FreezeRowsRequest, so Header line changes layer when frozen
|
||||
column->NavLayerCurrent = (ImS8)(table->FreezeRowsCount > 0 ? ImGuiNavLayer_Menu : table->NavLayer);
|
||||
column->NavLayerCurrent = (ImS8)(table->FreezeRowsCount > 0 ? ImGuiNavLayer_Menu : (ImGuiNavLayer)table->NavLayer);
|
||||
|
||||
if (offset_x_frozen && table->FreezeColumnsCount == visible_n)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue