only show mid-row cache line boundaries when unexpanded, since the expansion will show more precise info

This commit is contained in:
Ryan Fleury
2024-02-02 12:53:34 -08:00
parent 15e239a0dc
commit 6897c0bb57
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1045,7 +1045,7 @@ ui_table_cell_sized_begin(UI_Size size)
ui_ts_cell_idx += 1;
ui_set_next_pref_width(size);
ui_set_next_child_layout_axis(Axis2_X);
UI_Box *cell = ui_build_box_from_stringf((column_idx > 0 ? UI_BoxFlag_DrawSideLeft : 0), "###tbl_cell_%p_%I64u", vector, vector->child_count);
UI_Box *cell = ui_build_box_from_stringf((column_idx > 0 ? UI_BoxFlag_DrawSideLeft : 0), "###tbl_cell_%p_%I64u", vector, ui_ts_cell_idx);
ui_push_parent(cell);
return cell;
}