diff --git a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs
index c562dbb37..ce24f7661 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 _autoTopmost = false;
- public bool AutoTopmost
+ private bool _autoTopmostResults = false;
+ public bool AutoTopmostResults
{
- get => _autoTopmost;
+ get => _autoTopmostResults;
set
{
- if (_autoTopmost != value)
+ if (_autoTopmostResults != value)
{
- _autoTopmost = value;
+ _autoTopmostResults = value;
OnPropertyChanged();
}
}
diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml
index 558d40824..5bb6a781d 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 on Open
- Set Flow Launcher to be topmost automatically when it is opened.
+ 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 5500c1081..1b3335da2 100644
--- a/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml
+++ b/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml
@@ -98,14 +98,14 @@
+ Description="{DynamicResource autoTopmostResultsToolTip}"
+ Header="{DynamicResource autoTopmostResults}">
diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs
index 4f356b8cd..a7edf1cca 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.AutoTopmost)
+ if (Settings.AutoTopmostResults)
_topMostRecord.AddOrUpdate(result);
}
}