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 284fe2b commit 83e5654Copy full SHA for 83e5654
Flow.Launcher/CustomShortcutSetting.xaml.cs
@@ -9,13 +9,14 @@ namespace Flow.Launcher
9
{
10
public partial class CustomShortcutSetting : Window
11
12
+ private static readonly Settings _settings = Ioc.Default.GetRequiredService<Settings>();
13
+
14
private readonly SettingsPaneHotkeyViewModel _hotkeyVm;
15
public string Key { get; set; } = String.Empty;
16
public string Value { get; set; } = String.Empty;
17
private string originalKey { get; } = null;
18
private string originalValue { get; } = null;
19
private bool update { get; } = false;
- private readonly Settings _settings;
20
public event PropertyChangedEventHandler PropertyChanged;
21
22
public string SettingWindowFont
0 commit comments