mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Enable acrylic effect on first launch if running on Windows 11
This commit is contained in:
parent
dda008f80b
commit
4e5584b709
1 changed files with 3 additions and 0 deletions
|
|
@ -98,6 +98,9 @@ namespace Flow.Launcher
|
||||||
{
|
{
|
||||||
_settings.FirstLaunch = false;
|
_settings.FirstLaunch = false;
|
||||||
App.API.SaveAppAllSettings();
|
App.API.SaveAppAllSettings();
|
||||||
|
/* Set Backdrop Type to Acrylic for Windows 11 when First Launch. Default is None. */
|
||||||
|
if (OperatingSystem.IsWindowsVersionAtLeast(10, 0, 22000))
|
||||||
|
_settings.BackdropType = BackdropTypes.Acrylic;
|
||||||
var WelcomeWindow = new WelcomeWindow();
|
var WelcomeWindow = new WelcomeWindow();
|
||||||
WelcomeWindow.Show();
|
WelcomeWindow.Show();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue