Removal of the 20 columns hard limit
This commit is contained in:
Chris
2026-02-07 21:16:49 +01:00
parent 989e8c0336
commit 18c91bf587
6 changed files with 5 additions and 3 deletions

View File

@@ -859,7 +859,7 @@ static void control_panel_handle_click(Window *win, int x, int y) {
}
}
if (x >= offset_x + 180 && x < offset_x + 200 && y >= section_y && y < section_y + 20) {
if (desktop_max_cols < 20) desktop_max_cols++;
desktop_max_cols++;
wm_refresh_desktop();
}
}