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

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -83,9 +83,11 @@ qemu-system-x86_64 -m 2G -serial stdio -cdrom brewos.iso -boot d
3. **Boot**: Insert the USB drive and select it in the boot menu during startup 3. **Boot**: Insert the USB drive and select it in the boot menu during startup
**Networking requires an Intel E1000 network card or similar while using Ethernet.**
4. **Tested Hardware**: 4. **Tested Hardware**:
- HP EliteDesk 705 G4 DM (AMD Ryzen 5 PRO 2400G, Radeon Vega) - HP EliteDesk 705 G4 DM (AMD Ryzen 5 PRO 2400G, Radeon Vega) **Tested, no networking.**
- Lenovo ThinkPad A475 20KL002VMH (AMD Pro A12-8830B, Radeon R7) - Lenovo ThinkPad A475 20KL002VMH (AMD Pro A12-8830B, Radeon R7) **Tested, no networking.**
- Acer Aspire E5-573-311M (Intel Core i3-5005U, Intel HD Graphics) **Tested, no networking.**
## Project Structure ## Project Structure

Binary file not shown.

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 (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(); wm_refresh_desktop();
} }
} }