Skip to content

Commit 051b6bb

Browse files
committed
Add a message stating that the backdrop is not applied to the Preview
1 parent 13aa475 commit 051b6bb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Flow.Launcher/Languages/en.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@
226226
<system:String x:Key="Clock">Clock</system:String>
227227
<system:String x:Key="Date">Date</system:String>
228228
<system:String x:Key="BackdropType">Backdrop Type</system:String>
229+
<system:String x:Key="BackdropTypeToolTip">You can configure the type of backdrop effect. Please note that it will not be reflected in the preview.</system:String>
229230
<system:String x:Key="BackdropTypeDisabledToolTip">Backdrop supported starting from Windows 11 build 22000 and above</system:String>
230231
<system:String x:Key="BackdropTypesNone">None</system:String>
231232
<system:String x:Key="BackdropTypesAcrylic">Acrylic</system:String>

Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Flow.Launcher.SettingPages.ViewModels;
2323
public partial class SettingsPaneThemeViewModel : BaseModel
2424
{
2525
private string DefaultFont = Settings.GetSystemDefaultFont();
26-
public string BackdropSubText => !Win32Helper.IsBackdropSupported() ? App.API.GetTranslation("BackdropTypeDisabledToolTip") : "";
26+
public string BackdropSubText => !Win32Helper.IsBackdropSupported() ? App.API.GetTranslation("BackdropTypeDisabledToolTip") : App.API.GetTranslation("BackdropTypeToolTip");
2727
public Settings Settings { get; }
2828
private readonly Theme _theme = Ioc.Default.GetRequiredService<Theme>();
2929

0 commit comments

Comments
 (0)