🚧 hot fix

This commit is contained in:
Vladislav Nepogodin 2022-01-02 03:17:34 +04:00
parent 7fb41136a0
commit c608ed3e66
No known key found for this signature in database
GPG Key ID: B62C3D10C54D5DA9

View File

@ -1911,10 +1911,13 @@ void init() noexcept {
case 2: case 2:
tui::system_rescue_menu(); tui::system_rescue_menu();
break; break;
default: default: {
screen.ExitLoopClosure()(); if (utils::exit_done()) {
screen.ExitLoopClosure()();
}
break; break;
} }
}
}; };
detail::menu_widget(menu_entries, ok_callback, &selected, &screen); detail::menu_widget(menu_entries, ok_callback, &selected, &screen);
} }