File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ Other changes:
57
57
which amusingly made it disappear when using very big font/frame size.
58
58
- Tables: fixed calling SetNextWindowScroll() on clipped scrolling table
59
59
to not leak the value into a subsequent window. (#8196)
60
+ - Tables: fixed an issue where Columns Visible/Hidden state wouldn't be correctly
61
+ overridden when hot-reloading .ini state. (#7934)
60
62
- TextLinkOpenURL(): fixed default Win32 io.PlatformOpenInShellFn handler to
61
63
handle UTF-8 regardless of system regional settings. (#7660) [@achabense]
62
64
- Demo: Combos: demonstrate a very simple way to add a filter to a combo,
@@ -67,6 +69,7 @@ Other changes:
67
69
- Backends: WebGPU: Fix for DAWN API rename WGPUProgrammableStageDescriptor -> WGPUComputeState.
68
70
[@PhantomCloak] (#8369)
69
71
72
+
70
73
-----------------------------------------------------------------------
71
74
VERSION 1.91.8 (Released 2025-01-31)
72
75
-----------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -2944,7 +2944,7 @@ struct ImGuiTableColumnSettings
2944
2944
ImGuiTableColumnIdx DisplayOrder;
2945
2945
ImGuiTableColumnIdx SortOrder;
2946
2946
ImU8 SortDirection : 2 ;
2947
- ImU8 IsEnabled : 1 ; // "Visible" in ini file
2947
+ ImS8 IsEnabled : 2 ; // "Visible" in ini file
2948
2948
ImU8 IsStretch : 1 ;
2949
2949
2950
2950
ImGuiTableColumnSettings ()
@@ -2954,7 +2954,7 @@ struct ImGuiTableColumnSettings
2954
2954
Index = -1 ;
2955
2955
DisplayOrder = SortOrder = -1 ;
2956
2956
SortDirection = ImGuiSortDirection_None;
2957
- IsEnabled = 1 ;
2957
+ IsEnabled = - 1 ;
2958
2958
IsStretch = 0 ;
2959
2959
}
2960
2960
};
Original file line number Diff line number Diff line change @@ -3741,7 +3741,7 @@ void ImGui::TableLoadSettings(ImGuiTable* table)
3741
3741
else
3742
3742
column->DisplayOrder = (ImGuiTableColumnIdx)column_n;
3743
3743
display_order_mask |= (ImU64)1 << column->DisplayOrder ;
3744
- column->IsUserEnabled = column->IsUserEnabledNextFrame = column_settings->IsEnabled ;
3744
+ column->IsUserEnabled = column->IsUserEnabledNextFrame = ( column_settings->IsEnabled != - 1 ? column_settings-> IsEnabled == 1 : (column-> Flags & ImGuiTableColumnFlags_DefaultHide) ? 0 : 1 ) ;
3745
3745
column->SortOrder = column_settings->SortOrder ;
3746
3746
column->SortDirection = column_settings->SortDirection ;
3747
3747
}
You can’t perform that action at this time.
0 commit comments