Fix Splash colour retrieval & show main window earlier if splash is disabled

This commit is contained in:
Vendicated
2025-02-06 05:36:10 +01:00
parent 9905592b24
commit 7e33780743
4 changed files with 47 additions and 9 deletions

View File

@@ -63,15 +63,15 @@ const SettingsOptions: Record<string, Array<BooleanSetting | SettingsComponent>>
{
key: "enableSplashScreen",
title: "Enable Splash Screen",
description: "Shows a small splash screen while Vesktop is loading",
description:
"Shows a small splash screen while Vesktop is loading. Disabling this option will show the main window earlier while it's still loading.",
defaultValue: true
},
{
key: "splashTheming",
title: "Splash theming",
description: "Adapt the splash window colors to your custom theme",
defaultValue: false,
disabled: () => Settings.store.enableSplashScreen === false
defaultValue: true
},
WindowsTransparencyControls
],