From 4b2dbeaf1bf38556f089e5ed2e73b65c182d929c Mon Sep 17 00:00:00 2001 From: Ivan Dmitrievich Yartsev Date: Tue, 23 Dec 2025 18:26:30 +0000 Subject: [PATCH] WIP Application autorun page --- source/ubinstall-gtk-page-switch.c | 2 ++ source/ubinstall-gtk.h | 1 + 2 files changed, 3 insertions(+) diff --git a/source/ubinstall-gtk-page-switch.c b/source/ubinstall-gtk-page-switch.c index db62c71..4ea6dbe 100644 --- a/source/ubinstall-gtk-page-switch.c +++ b/source/ubinstall-gtk-page-switch.c @@ -20,6 +20,7 @@ enum YON_PAGES yon_page_get_next(main_window *widgets, enum YON_PAGES page){ case YON_PAGE_KEYBOARD: return YON_PAGE_CONFIG_HUB; break; case YON_PAGE_USERS: return YON_PAGE_CONFIG_HUB; break; case YON_PAGE_STARTUP: return YON_PAGE_CONFIG_HUB; break; + case YON_PAGE_APP_STARTUP: return YON_PAGE_CONFIG_HUB; break; case YON_PAGE_BOOTLOADER: return YON_PAGE_CONFIG_HUB; break; case YON_PAGE_NETWORK: return YON_PAGE_CONFIG_HUB; break; case YON_PAGE_PACKAGES: return YON_PAGE_CONFIG_HUB; @@ -285,6 +286,7 @@ void yon_switch_page_render(main_window *widgets){ case YON_PAGE_USERS: case YON_PAGE_BOOTLOADER: case YON_PAGE_STARTUP: + case YON_PAGE_APP_STARTUP: case YON_PAGE_NETWORK: case YON_PAGE_PACKAGES: page = 3; diff --git a/source/ubinstall-gtk.h b/source/ubinstall-gtk.h index c8dfb16..6a48b51 100755 --- a/source/ubinstall-gtk.h +++ b/source/ubinstall-gtk.h @@ -378,6 +378,7 @@ enum YON_PAGES { YON_PAGE_KEYBOARD, YON_PAGE_USERS, YON_PAGE_STARTUP, + YON_PAGE_APP_STARTUP, YON_PAGE_BOOTLOADER, YON_PAGE_NETWORK, YON_PAGE_PACKAGES,