Skip to content

Commit 79a1cbd

Browse files
committed
Remove setting to toggle showing result selection hotkey with reuslts
1 parent 1e2daa3 commit 79a1cbd

File tree

3 files changed

+0
-26
lines changed

3 files changed

+0
-26
lines changed

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -52,20 +52,6 @@ public string OpenResultModifiers
5252

5353
public string ColorScheme { get; set; } = "System";
5454

55-
private bool _showOpenResultHotkey = true;
56-
public bool ShowOpenResultHotkey
57-
{
58-
get => _showOpenResultHotkey;
59-
set
60-
{
61-
if (_showOpenResultHotkey != value)
62-
{
63-
_showOpenResultHotkey = value;
64-
OnPropertyChanged();
65-
}
66-
}
67-
}
68-
6955
public double WindowSize { get; set; } = 580;
7056
public string PreviewHotkey { get; set; } = $"F1";
7157
public string AutoCompleteHotkey { get; set; } = $"{KeyConstant.Ctrl} + Tab";

Flow.Launcher/Languages/en.xaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,6 @@
195195
<system:String x:Key="hotkeyPresetsToolTip">List of currently registered hotkeys</system:String>
196196
<system:String x:Key="openResultModifiers">Open Result Modifier Key</system:String>
197197
<system:String x:Key="openResultModifiersToolTip">Select a modifier key to open selected result via keyboard.</system:String>
198-
<system:String x:Key="showOpenResultHotkey">Show Hotkey</system:String>
199-
<system:String x:Key="showOpenResultHotkeyToolTip">Show result selection hotkey with results.</system:String>
200198
<system:String x:Key="autoCompleteHotkey">Auto Complete</system:String>
201199
<system:String x:Key="autoCompleteHotkeyToolTip">Runs autocomplete for the selected items.</system:String>
202200
<system:String x:Key="SelectNextItemHotkey">Select Next Item</system:String>

Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,6 @@
6161
ItemsSource="{Binding OpenResultModifiersList}"
6262
SelectedValue="{Binding Settings.OpenResultModifiers}" />
6363
</cc:Card>
64-
65-
<cc:Card
66-
Title="{DynamicResource showOpenResultHotkey}"
67-
Sub="{DynamicResource showOpenResultHotkeyToolTip}"
68-
Type="Last">
69-
<ui:ToggleSwitch
70-
IsOn="{Binding Settings.ShowOpenResultHotkey}"
71-
OffContent="{DynamicResource disable}"
72-
OnContent="{DynamicResource enable}" />
73-
</cc:Card>
7464
</cc:CardGroup>
7565

7666
<cc:ExCard

0 commit comments

Comments
 (0)