diff --git a/brewos.iso b/brewos.iso index b91a6cd..1371591 100644 Binary files a/brewos.iso and b/brewos.iso differ diff --git a/build/brewos.elf b/build/brewos.elf index 3933524..a1c6a4b 100755 Binary files a/build/brewos.elf and b/build/brewos.elf differ diff --git a/build/control_panel.o b/build/control_panel.o index 46bddb0..0b6da38 100644 Binary files a/build/control_panel.o and b/build/control_panel.o differ diff --git a/iso_root/README.md b/iso_root/README.md index 5c05b20..1adb814 100644 --- a/iso_root/README.md +++ b/iso_root/README.md @@ -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 +**Networking requires an Intel E1000 network card or similar while using Ethernet.** 4. **Tested Hardware**: - - HP EliteDesk 705 G4 DM (AMD Ryzen 5 PRO 2400G, Radeon Vega) - - Lenovo ThinkPad A475 20KL002VMH (AMD Pro A12-8830B, Radeon R7) + - 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) **Tested, no networking.** + - Acer Aspire E5-573-311M (Intel Core i3-5005U, Intel HD Graphics) **Tested, no networking.** ## Project Structure diff --git a/iso_root/brewos.elf b/iso_root/brewos.elf index 3933524..a1c6a4b 100755 Binary files a/iso_root/brewos.elf and b/iso_root/brewos.elf differ diff --git a/src/kernel/control_panel.c b/src/kernel/control_panel.c index 4a599a0..30ce158 100644 --- a/src/kernel/control_panel.c +++ b/src/kernel/control_panel.c @@ -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(); } }