mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Change spaces shortcut to have 1 = space 1, 0 = home
This commit is contained in:
parent
f7ea7b948a
commit
9e4eebed26
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user