Skip to content

Commit 4377fd1

Browse files
authored
Merge pull request #2669 from onesounds/FixWrongHotkeyControlPosition
Fix Icon Position in PREV/NEXT page hotkey
2 parents 4ce591f + dc42f92 commit 4377fd1

File tree

2 files changed

+18
-19
lines changed

2 files changed

+18
-19
lines changed

Flow.Launcher/Languages/en.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@
196196
<system:String x:Key="OpenContainFolderHotkey">Open Containing Folder</system:String>
197197
<system:String x:Key="RunAsAdminHotkey">Run As Admin</system:String>
198198
<system:String x:Key="ReloadPluginHotkey">Reload Plugins Data</system:String>
199-
<system:String x:Key="QuickWidthHotkey">Quick Adjust Window Width Size</system:String>
200-
<system:String x:Key="QuickHeightHotkey">Quick Adjust Window Height Size</system:String>
199+
<system:String x:Key="QuickWidthHotkey">Quick Adjust Window Width</system:String>
200+
<system:String x:Key="QuickHeightHotkey">Quick Adjust Window Height</system:String>
201201
<system:String x:Key="ReloadPluginHotkeyToolTip">Use when require plugins to reload and update their existing data.</system:String>
202202
<system:String x:Key="AdditionalHotkeyToolTip">You can add one more hotkey for this function.</system:String>
203203
<system:String x:Key="customQueryHotkey">Custom Query Hotkeys</system:String>

Flow.Launcher/SettingWindow.xaml

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2808,21 +2808,21 @@
28082808
<cc:HotkeyDisplay Keys="F5" />
28092809
</cc:Card>
28102810
<cc:Card
2811-
Title="{DynamicResource SelectNextPageHotkey}"
2811+
Title="{DynamicResource SelectPrevPageHotkey}"
28122812
Icon="&#xf0ad;"
28132813
Type="Inside">
28142814
<flowlauncher:HotkeyControl
28152815
DefaultHotkey=""
2816-
Hotkey="{Binding Settings.SelectNextPageHotkey}"
2816+
Hotkey="{Binding Settings.SelectPrevPageHotkey}"
28172817
ValidateKeyGesture="False" />
28182818
</cc:Card>
28192819
<cc:Card
2820-
Title="{DynamicResource SelectPrevPageHotkey}"
2820+
Title="{DynamicResource SelectNextPageHotkey}"
28212821
Icon="&#xf0ae;"
28222822
Type="Inside">
28232823
<flowlauncher:HotkeyControl
28242824
DefaultHotkey=""
2825-
Hotkey="{Binding Settings.SelectPrevPageHotkey}"
2825+
Hotkey="{Binding Settings.SelectNextPageHotkey}"
28262826
ValidateKeyGesture="False" />
28272827
</cc:Card>
28282828

@@ -2870,45 +2870,44 @@
28702870
</cc:Card>
28712871
</cc:ExCard>
28722872

2873-
28742873
<cc:ExCard
2875-
Title="{DynamicResource SelectNextItemHotkey}"
2874+
Title="{DynamicResource SelectPrevItemHotkey}"
28762875
Margin="0,4,0,0"
2877-
Icon="&#xe74b;">
2876+
Icon="&#xe74a;">
28782877
<cc:ExCard.SideContent>
28792878
<flowlauncher:HotkeyControl
2880-
DefaultHotkey="Tab"
2881-
Hotkey="{Binding Settings.SelectNextItemHotkey}"
2879+
DefaultHotkey="Shift+Tab"
2880+
Hotkey="{Binding Settings.SelectPrevItemHotkey}"
28822881
ValidateKeyGesture="False" />
28832882
</cc:ExCard.SideContent>
28842883
<cc:Card
2885-
Title="{DynamicResource SelectNextItemHotkey}"
2884+
Title="{DynamicResource SelectPrevItemHotkey}"
28862885
Sub="{DynamicResource AdditionalHotkeyToolTip}"
28872886
Type="InsideFit">
28882887
<flowlauncher:HotkeyControl
28892888
DefaultHotkey=""
2890-
Hotkey="{Binding Settings.SelectNextItemHotkey2}"
2889+
Hotkey="{Binding Settings.SelectPrevItemHotkey2}"
28912890
ValidateKeyGesture="False" />
28922891
</cc:Card>
28932892
</cc:ExCard>
28942893

28952894
<cc:ExCard
2896-
Title="{DynamicResource SelectPrevItemHotkey}"
2895+
Title="{DynamicResource SelectNextItemHotkey}"
28972896
Margin="0,4,0,0"
2898-
Icon="&#xe74a;">
2897+
Icon="&#xe74b;">
28992898
<cc:ExCard.SideContent>
29002899
<flowlauncher:HotkeyControl
2901-
DefaultHotkey="Shift+Tab"
2902-
Hotkey="{Binding Settings.SelectPrevItemHotkey}"
2900+
DefaultHotkey="Tab"
2901+
Hotkey="{Binding Settings.SelectNextItemHotkey}"
29032902
ValidateKeyGesture="False" />
29042903
</cc:ExCard.SideContent>
29052904
<cc:Card
2906-
Title="{DynamicResource SelectPrevItemHotkey}"
2905+
Title="{DynamicResource SelectNextItemHotkey}"
29072906
Sub="{DynamicResource AdditionalHotkeyToolTip}"
29082907
Type="InsideFit">
29092908
<flowlauncher:HotkeyControl
29102909
DefaultHotkey=""
2911-
Hotkey="{Binding Settings.SelectPrevItemHotkey2}"
2910+
Hotkey="{Binding Settings.SelectNextItemHotkey2}"
29122911
ValidateKeyGesture="False" />
29132912
</cc:Card>
29142913
</cc:ExCard>

0 commit comments

Comments
 (0)