Skip to content

Commit bb76e4e

Browse files
authored
Merge pull request #3728 from Flow-Launcher/topmost_description
Improve Topmost Feature
2 parents 6a22a16 + 4c7f966 commit bb76e4e

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ public bool HideNotifyIcon
383383
public bool LeaveCmdOpen { get; set; }
384384
public bool HideWhenDeactivated { get; set; } = true;
385385

386-
private bool _showAtTopmost = true;
386+
private bool _showAtTopmost = false;
387387
public bool ShowAtTopmost
388388
{
389389
get => _showAtTopmost;

Flow.Launcher/Languages/en.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@
131131
<system:String x:Key="historyResultsForHomePage">Show History Results in Home Page</system:String>
132132
<system:String x:Key="historyResultsCountForHomePage">Maximum History Results Shown in Home Page</system:String>
133133
<system:String x:Key="homeToggleBoxToolTip">This can only be edited if plugin supports Home feature and Home Page is enabled.</system:String>
134-
<system:String x:Key="showAtTopmost">Show Search Window at Topmost</system:String>
135-
<system:String x:Key="showAtTopmostToolTip">Show search window above other windows</system:String>
134+
<system:String x:Key="showAtTopmost">Show Search Window at Foremost</system:String>
135+
<system:String x:Key="showAtTopmostToolTip">Overrides other programs' 'Always on Top' setting and displays Flow in the foremost position.</system:String>
136136

137137
<!-- Setting Plugin -->
138138
<system:String x:Key="searchplugin">Search Plugin</system:String>

Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,25 +70,27 @@
7070
OnContent="{DynamicResource enable}" />
7171
</cc:Card>
7272

73+
7374
<cc:Card Title="{DynamicResource hideNotifyIcon}" Sub="{DynamicResource hideNotifyIconToolTip}">
7475
<ui:ToggleSwitch
7576
IsOn="{Binding Settings.HideNotifyIcon}"
7677
OffContent="{DynamicResource disable}"
7778
OnContent="{DynamicResource enable}" />
7879
</cc:Card>
7980

81+
8082
<cc:Card
8183
Title="{DynamicResource showAtTopmost}"
8284
Margin="0 14 0 0"
83-
Icon="&#xE923;"
85+
Icon="&#xf5ed;"
8486
Sub="{DynamicResource showAtTopmostToolTip}">
8587
<ui:ToggleSwitch
8688
IsOn="{Binding Settings.ShowAtTopmost}"
8789
OffContent="{DynamicResource disable}"
8890
OnContent="{DynamicResource enable}" />
8991
</cc:Card>
9092

91-
<cc:CardGroup Margin="0 14 0 0">
93+
<cc:CardGroup Margin="0 4 0 0">
9294
<cc:Card Title="{DynamicResource SearchWindowPosition}" Icon="&#xe7f4;">
9395
<StackPanel Orientation="Horizontal">
9496
<ComboBox

0 commit comments

Comments
 (0)