File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ Other changes:
66
66
overridden when hot-reloading .ini state. (#7934)
67
67
- Tables: tamed some .ini settings optimizations to more accurately allow
68
68
overwriting/hot-reloading settings in more situations. (#7934)
69
+ - Tables, Error Handling: Recovery from invalid index in TableSetColumnIndex(). (#1651)
69
70
- Styles, Tabs: made the Close Button of selected tabs always visible by default,
70
71
without requiring to hover the tab. (#8387)
71
72
- Added style.TabCloseButtonMinWidthSelected/TabCloseButtonMinWidthUnselected settings
Original file line number Diff line number Diff line change @@ -2106,7 +2106,11 @@ bool ImGui::TableSetColumnIndex(int column_n)
2106
2106
{
2107
2107
if (table->CurrentColumn != -1 )
2108
2108
TableEndCell (table);
2109
- IM_ASSERT (column_n >= 0 && table->ColumnsCount );
2109
+ if ((column_n >= 0 && column_n < table->ColumnsCount ) == false )
2110
+ {
2111
+ IM_ASSERT_USER_ERROR (column_n >= 0 && column_n < table->ColumnsCount , " TableSetColumnIndex() invalid column index!" );
2112
+ return false ;
2113
+ }
2110
2114
TableBeginCell (table, column_n);
2111
2115
}
2112
2116
You can’t perform that action at this time.
0 commit comments