mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
Hot fix
Removal of the 20 columns hard limit
This commit is contained in:
parent
989e8c0336
commit
18c91bf587
6 changed files with 5 additions and 3 deletions
BIN
brewos.iso
BIN
brewos.iso
Binary file not shown.
BIN
build/brewos.elf
BIN
build/brewos.elf
Binary file not shown.
Binary file not shown.
|
|
@ -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.
|
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue