Times font by default browser

This commit is contained in:
boreddevnl
2026-03-07 17:02:18 +01:00
parent bfac4bf65c
commit 032b154f41
12 changed files with 106 additions and 16 deletions

View File

@@ -83,3 +83,7 @@ void ui_window_set_title(ui_window_t win, const char *title) {
void ui_window_set_resizable(ui_window_t win, bool resizable) {
syscall3(SYS_GUI, GUI_CMD_WINDOW_SET_RESIZABLE, (uint64_t)win, resizable ? 1 : 0);
}
void ui_set_font(ui_window_t win, const char *path) {
syscall3(SYS_GUI, GUI_CMD_SET_FONT, (uint64_t)win, (uint64_t)path);
}