Exchange Alt and Super modifiers in the key action popover.

This commit is contained in:
László Monda
2018-09-03 03:58:03 +02:00
parent 3e4d439852
commit 2d5a5e7aef

View File

@@ -32,14 +32,14 @@ export class KeypressTabComponent extends Tab implements OnChanges {
this.leftModifiers = [
'LShift',
'LCtrl',
mapper.getOsSpecificText('LSuper'),
mapper.getOsSpecificText('LAlt')
mapper.getOsSpecificText('LAlt'),
mapper.getOsSpecificText('LSuper')
];
this.rightModifiers = [
'RShift',
'RCtrl',
mapper.getOsSpecificText('RSuper'),
mapper.getOsSpecificText('RAlt')
mapper.getOsSpecificText('RAlt'),
mapper.getOsSpecificText('RSuper')
];
this.scanCodeGroups = [{
id: '0',