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 = [ this.leftModifiers = [
'LShift', 'LShift',
'LCtrl', 'LCtrl',
mapper.getOsSpecificText('LSuper'), mapper.getOsSpecificText('LAlt'),
mapper.getOsSpecificText('LAlt') mapper.getOsSpecificText('LSuper')
]; ];
this.rightModifiers = [ this.rightModifiers = [
'RShift', 'RShift',
'RCtrl', 'RCtrl',
mapper.getOsSpecificText('RSuper'), mapper.getOsSpecificText('RAlt'),
mapper.getOsSpecificText('RAlt') mapper.getOsSpecificText('RSuper')
]; ];
this.scanCodeGroups = [{ this.scanCodeGroups = [{
id: '0', id: '0',