File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -200,14 +200,6 @@ class nsKeyShortcutModifiers {
200200 str += AppConstants . platform == 'macosx' ? '⌃' : 'Ctrl' ;
201201 str += separation ;
202202 }
203- if ( this . #alt) {
204- str += AppConstants . platform == 'macosx' ? '⌥' : 'Alt' ;
205- str += separation ;
206- }
207- if ( this . #shift) {
208- str += '⇧' ;
209- str += separation ;
210- }
211203 if ( this . #meta) {
212204 str += AppConstants . platform == 'macosx' ? '⌘' : 'Win' ;
213205 str += separation ;
@@ -216,6 +208,15 @@ class nsKeyShortcutModifiers {
216208 str += AppConstants . platform == 'macosx' ? '⌘' : 'Ctrl' ;
217209 str += separation ;
218210 }
211+
212+ if ( this . #alt) {
213+ str += AppConstants . platform == 'macosx' ? '⌥' : 'Alt' ;
214+ str += separation ;
215+ }
216+ if ( this . #shift) {
217+ str += '⇧' ;
218+ str += separation ;
219+ }
219220 return str ;
220221 }
221222
You can’t perform that action at this time.
0 commit comments