Merge pull request #3369 from onesounds/050322-ArcrylicFirstLaunch

Enable acrylic effect on first launch
This commit is contained in:
DB P 2025-03-22 18:27:46 +09:00 committed by GitHub
commit 8d0d19eaf2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -98,6 +98,9 @@ namespace Flow.Launcher
{
_settings.FirstLaunch = false;
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();
WelcomeWindow.Show();
}