Change order of options to match the order of left modifiers.

This is more logical when one is reading through the options than having
the right modifiers in reverse order (compared to the left).
The previous order of the modifiers matched their order on a standard
keyboard when read form left to right.
This commit is contained in:
Arpad Csanyi
2016-05-20 19:15:18 +02:00
parent 628f07e89c
commit abe1555383

View File

@@ -169,20 +169,20 @@ $(function() {
label: 'LAlt'
},
{
value: 'RAlt',
label: 'RAlt'
},
{
value: 'RSuper',
label: 'RSuper'
value: 'RShift',
label: 'RShift'
},
{
value: 'RCtrl',
label: 'RCtrl'
},
{
value: 'RShift',
label: 'RShift'
value: 'RSuper',
label: 'RSuper'
},
{
value: 'RAlt',
label: 'RAlt'
}
]
},