Skip to content

Commit 824f61d

Browse files
Merge pull request #1874 from VictoriousRaptor/bugfix
Fix 1861 and 1863
2 parents 51c9098 + f941655 commit 824f61d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Flow.Launcher/HotkeyControl.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public Task SetHotkeyAsync(string keyStr, bool triggerValidate = true)
103103

104104
private void tbHotkey_LostFocus(object sender, RoutedEventArgs e)
105105
{
106-
tbHotkey.Text = CurrentHotkey.ToString();
106+
tbHotkey.Text = CurrentHotkey?.ToString() ?? "";
107107
tbHotkey.Select(tbHotkey.Text.Length, 0);
108108
}
109109

Plugins/Flow.Launcher.Plugin.Explorer/Languages/en.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<system:String x:Key="plugin_explorer_delete_folder_link">Are you sure you want to delete {0}?</system:String>
1010
<system:String x:Key="plugin_explorer_deletefolderconfirm">Are you sure you want to permanently delete this folder?</system:String>
1111
<system:String x:Key="plugin_explorer_deletefileconfirm">Are you sure you want to permanently delete this file?</system:String>
12+
<system:String x:Key="plugin_explorer_deletefilefolderconfirm">Are you sure you want to permanently delete this file/folder?</system:String>
1213
<system:String x:Key="plugin_explorer_deletefilefoldersuccess">Deletion successful</system:String>
1314
<system:String x:Key="plugin_explorer_deletefilefoldersuccess_detail">Successfully deleted {0}</system:String>
1415
<system:String x:Key="plugin_explorer_globalActionKeywordInvalid">Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword</system:String>

0 commit comments

Comments
 (0)