Add splash screen toggle (#2568)

Add preferences option to toggle splash screen
This commit is contained in:
Ocraftyone 2023-11-01 04:47:14 -04:00 committed by GitHub
parent 261393b649
commit 06f966e43a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View file

@ -231,6 +231,12 @@ void AppConfig::set_defaults()
if (get("stealth_mode").empty()) {
set_bool("stealth_mode", false);
}
// Orca
if(get("show_splash_screen").empty()) {
set_bool("show_splash_screen", true);
}
if (get("show_model_mesh").empty()) {
set_bool("show_model_mesh", false);
}