We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d3e6e0 commit 019019eCopy full SHA for 019019e
Flow.Launcher/CustomShortcutSetting.xaml.cs
@@ -9,11 +9,11 @@ namespace Flow.Launcher
9
public partial class CustomShortcutSetting : Window
10
{
11
private SettingWindowViewModel viewModel;
12
- public string Key { get; set; }
13
- public string Value { get; set; }
+ public string Key { get; set; } = String.Empty;
+ public string Value { get; set; } = String.Empty;
14
private string originalKey { get; init; } = null;
15
private string originalValue { get; init; } = null;
16
- bool update = false;
+ private bool update { get; init; } = false;
17
18
public CustomShortcutSetting(SettingWindowViewModel vm)
19
0 commit comments