|
|
|
|
@ -372,7 +372,7 @@ void yon_page_init(main_window *widgets, enum YON_PAGES page){
|
|
|
|
|
break;
|
|
|
|
|
case YON_PAGE_INSTALL_ADVANCED:
|
|
|
|
|
yon_install_advanced_init(widgets);
|
|
|
|
|
[[fallthrough]];
|
|
|
|
|
__attribute__((fallthrough));
|
|
|
|
|
case YON_PAGE_INSTALL_COMMON:
|
|
|
|
|
case YON_PAGE_INSTALL_SEPARATE:
|
|
|
|
|
case YON_PAGE_INSTALL_SAME_PARTITION:
|
|
|
|
|
@ -449,7 +449,11 @@ void on_system_setup_pass(GtkWidget *, main_window *widgets){
|
|
|
|
|
if (main_config.configure_mode){
|
|
|
|
|
gtk_notebook_set_current_page(GTK_NOTEBOOK(widgets->Notebook),YON_PAGE_CONFIGURE_END);
|
|
|
|
|
} else {
|
|
|
|
|
gtk_notebook_set_current_page(GTK_NOTEBOOK(widgets->Notebook),YON_PAGE_INSTALLATION);
|
|
|
|
|
if (main_config.install_complete) {
|
|
|
|
|
gtk_notebook_set_current_page(GTK_NOTEBOOK(widgets->Notebook),YON_PAGE_COMPLETION);
|
|
|
|
|
} else {
|
|
|
|
|
gtk_notebook_set_current_page(GTK_NOTEBOOK(widgets->Notebook),YON_PAGE_INSTALLATION);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
yon_page_update(widgets);
|
|
|
|
|
}
|