Change spaces shortcut to have 1 = space 1, 0 = home

pull/17457/head
Michael Telatynski 2021-06-18 08:24:36 +01:00
parent f7ea7b948a
commit 9e4eebed26
1 changed files with 1 additions and 3 deletions

View File

@ -602,9 +602,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
case "9":
case "0":
if (SettingsStore.getValue("feature_spaces") && isOnlyCtrlOrCmdKeyEvent(ev)) {
const keyNum = parseInt(ev.key, 10);
// map keyNum {1..0} to a {0..9} where key 1 is the home space
this.navigateToSpace((keyNum + 9) % 10);
this.navigateToSpace(parseInt(ev.key, 10));
handled = true;
}
break;