From 051b6bbbef2f9782016a6d0ffc27e91e15e1d7fc Mon Sep 17 00:00:00 2001 From: DB p Date: Sat, 12 Apr 2025 15:24:25 +0900 Subject: [PATCH] Add a message stating that the backdrop is not applied to the Preview --- Flow.Launcher/Languages/en.xaml | 1 + .../SettingPages/ViewModels/SettingsPaneThemeViewModel.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index d2549bd91..b736d8900 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -226,6 +226,7 @@ Clock Date Backdrop Type + You can configure the type of backdrop effect. Please note that it will not be reflected in the preview. Backdrop supported starting from Windows 11 build 22000 and above None Acrylic diff --git a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs index ee6dfdbe8..568392908 100644 --- a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs +++ b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs @@ -23,7 +23,7 @@ namespace Flow.Launcher.SettingPages.ViewModels; public partial class SettingsPaneThemeViewModel : BaseModel { private string DefaultFont = Settings.GetSystemDefaultFont(); - public string BackdropSubText => !Win32Helper.IsBackdropSupported() ? App.API.GetTranslation("BackdropTypeDisabledToolTip") : ""; + public string BackdropSubText => !Win32Helper.IsBackdropSupported() ? App.API.GetTranslation("BackdropTypeDisabledToolTip") : App.API.GetTranslation("BackdropTypeToolTip"); public Settings Settings { get; } private readonly Theme _theme = Ioc.Default.GetRequiredService();