From e5414d97daa86091814bcd716e7ebafd73900b42 Mon Sep 17 00:00:00 2001 From: 01Dri Date: Mon, 15 Dec 2025 11:30:46 -0300 Subject: [PATCH] name changes --- Flow.Launcher.Infrastructure/UserSettings/Settings.cs | 8 ++++---- Flow.Launcher/Languages/en.xaml | 4 ++-- Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml | 6 +++--- Flow.Launcher/ViewModel/MainViewModel.cs | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs index 724268df8..e45ac5e6b 100644 --- a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs +++ b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs @@ -496,15 +496,15 @@ namespace Flow.Launcher.Infrastructure.UserSettings } } - private bool _autoTopmostResults = false; + private bool _autoTopmostLastOpenedResults = false; public bool AutoTopmostLastOpenedResult { - get => _autoTopmostResults; + get => _autoTopmostLastOpenedResults; set { - if (_autoTopmostResults != value) + if (_autoTopmostLastOpenedResults != value) { - _autoTopmostResults = value; + _autoTopmostLastOpenedResults = value; OnPropertyChanged(); } } diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 5bb6a781d..a1ea6aac2 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -177,8 +177,8 @@ This can only be edited if plugin supports Home feature and Home Page is enabled. Show Search Window at Foremost Overrides other programs' 'Always on Top' setting and displays Flow in the foremost position. - Auto Topmost Results - Automatically mark selected results as topmost in their queries for faster access in future searches. + Auto Topmost Results + Automatically mark selected results as topmost in their queries for faster access in future searches. Restart after modifying plugin via Plugin Store Restart Flow Launcher automatically after installing/uninstalling/updating plugin via Plugin Store Show unknown source warning diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml b/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml index 1b3335da2..ec9179463 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml @@ -98,14 +98,14 @@ + Description="{DynamicResource autoTopmostLastOpenedResultToolTip}" + Header="{DynamicResource autoTopmostLastOpenedResult}"> diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index a7edf1cca..0c0c317ed 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -538,7 +538,7 @@ namespace Flow.Launcher.ViewModel { _history.Add(result); lastHistoryIndex = 1; - if (Settings.AutoTopmostResults) + if (Settings.AutoTopmostLastOpenedResult) _topMostRecord.AddOrUpdate(result); } }