private changes. don't shrink table content

This commit is contained in:
Ken Reneris
2025-06-28 09:15:37 -07:00
parent df2ddcc588
commit 2d50269730
4 changed files with 41 additions and 7 deletions

View File

@@ -216,13 +216,13 @@ Element Table::Render() {
// Line
if ((x + y) % 2 == 1) {
it = std::move(it) | flex;
it = std::move(it)| flex; //it = std::move(it); // | flex;
continue;
}
// Cells
if ((x % 2) == 1 && (y % 2) == 1) {
it = std::move(it) | flex_shrink;
// it = std::move(it) | flex_shrink; //it = std::move(it) | flex_shrink;
continue;
}