Fix shortcut label on welcome screen: "Control" -> "Ctrl"

This commit is contained in:
Keavon Chambers
2022-08-11 10:53:03 -07:00
parent cf6bbcfd30
commit 47aaaf89d7
2 changed files with 8 additions and 8 deletions

View File

@@ -262,7 +262,7 @@ export default defineComponent({
const ALT: Key = { key: "Alt", label: "Alt" };
const COMMAND: Key = { key: "Command", label: "Command" };
const CONTROL: Key = { key: "Control", label: "Control" };
const CONTROL: Key = { key: "Control", label: "Ctrl" };
if (platformIsMac()) return reservedKey ? [ALT, COMMAND] : [COMMAND];
return reservedKey ? [CONTROL, ALT] : [CONTROL];