- Change Default Theme Name (win11Light to win11System)

- Change UseDropShadowEffect to true
This commit is contained in:
DB p 2024-05-29 22:54:15 +09:00
parent 82e99443ff
commit e060e2f493
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ namespace Flow.Launcher.Infrastructure
public static readonly string QueryTextBoxIconImagePath = $"{ProgramDirectory}\\Images\\mainsearch.svg";
public const string DefaultTheme = "Win11Light";
public const string DefaultTheme = "Win11System";
public const string Light = "Light";
public const string Dark = "Dark";

View file

@ -55,7 +55,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings
OnPropertyChanged(nameof(MaxResultsToShow));
}
}
public bool UseDropShadowEffect { get; set; } = false;
public bool UseDropShadowEffect { get; set; } = true;
/* Appearance Settings. It should be separated from the setting later.*/
public double WindowHeightSize { get; set; } = 42;