mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix typo
This commit is contained in:
parent
2c5fcf7b9f
commit
0f3f97a198
1 changed files with 2 additions and 2 deletions
|
|
@ -142,7 +142,7 @@ namespace Flow.Launcher
|
||||||
HotkeyType.SelectPrevItemHotkey2 => _settings.SelectPrevItemHotkey2,
|
HotkeyType.SelectPrevItemHotkey2 => _settings.SelectPrevItemHotkey2,
|
||||||
HotkeyType.SelectNextItemHotkey => _settings.SelectNextItemHotkey,
|
HotkeyType.SelectNextItemHotkey => _settings.SelectNextItemHotkey,
|
||||||
HotkeyType.SelectNextItemHotkey2 => _settings.SelectNextItemHotkey2,
|
HotkeyType.SelectNextItemHotkey2 => _settings.SelectNextItemHotkey2,
|
||||||
_ => throw new System.NotImplementedException("Hotkey type not setted")
|
_ => throw new System.NotImplementedException("Hotkey type not set")
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
set
|
set
|
||||||
|
|
@ -197,7 +197,7 @@ namespace Flow.Launcher
|
||||||
_settings.SelectNextItemHotkey2 = value;
|
_settings.SelectNextItemHotkey2 = value;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw new System.NotImplementedException("Hotkey type not setted");
|
throw new System.NotImplementedException("Hotkey type not set");
|
||||||
}
|
}
|
||||||
|
|
||||||
// After setting the hotkey, we need to refresh the interface
|
// After setting the hotkey, we need to refresh the interface
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue