Skip to content

Commit 019019e

Browse files
Fix
1 parent 5d3e6e0 commit 019019e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Flow.Launcher/CustomShortcutSetting.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ namespace Flow.Launcher
99
public partial class CustomShortcutSetting : Window
1010
{
1111
private SettingWindowViewModel viewModel;
12-
public string Key { get; set; }
13-
public string Value { get; set; }
12+
public string Key { get; set; } = String.Empty;
13+
public string Value { get; set; } = String.Empty;
1414
private string originalKey { get; init; } = null;
1515
private string originalValue { get; init; } = null;
16-
bool update = false;
16+
private bool update { get; init; } = false;
1717

1818
public CustomShortcutSetting(SettingWindowViewModel vm)
1919
{

0 commit comments

Comments
 (0)