mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix
This commit is contained in:
parent
5d3e6e02af
commit
019019e513
1 changed files with 3 additions and 3 deletions
|
|
@ -9,11 +9,11 @@ namespace Flow.Launcher
|
|||
public partial class CustomShortcutSetting : Window
|
||||
{
|
||||
private SettingWindowViewModel viewModel;
|
||||
public string Key { get; set; }
|
||||
public string Value { get; set; }
|
||||
public string Key { get; set; } = String.Empty;
|
||||
public string Value { get; set; } = String.Empty;
|
||||
private string originalKey { get; init; } = null;
|
||||
private string originalValue { get; init; } = null;
|
||||
bool update = false;
|
||||
private bool update { get; init; } = false;
|
||||
|
||||
public CustomShortcutSetting(SettingWindowViewModel vm)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue