File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -18,29 +18,29 @@ document.title = APP_NAME;
18
18
19
19
const menuTemplate = [
20
20
{
21
- label : APP_NAME ,
21
+ label : '&' + APP_NAME ,
22
22
submenu : appMenu
23
23
} ,
24
24
{
25
- label : i18n . __ ( 'Edit' ) ,
25
+ label : '&' + i18n . __ ( 'Edit' ) ,
26
26
submenu : editMenu
27
27
} ,
28
28
{
29
- label : i18n . __ ( 'View' ) ,
29
+ label : '&' + i18n . __ ( 'View' ) ,
30
30
submenu : viewMenu
31
31
} ,
32
32
{
33
- label : i18n . __ ( 'History' ) ,
33
+ label : '&' + i18n . __ ( 'History' ) ,
34
34
submenu : historyMenu
35
35
} ,
36
36
{
37
- label : i18n . __ ( 'Window' ) ,
37
+ label : '&' + i18n . __ ( 'Window' ) ,
38
38
id : 'window' ,
39
39
role : 'window' ,
40
40
submenu : windowMenu
41
41
} ,
42
42
{
43
- label : i18n . __ ( 'Help' ) ,
43
+ label : '&' + i18n . __ ( 'Help' ) ,
44
44
role : 'help' ,
45
45
submenu : helpMenu
46
46
}
@@ -56,7 +56,7 @@ function addServer (host, position) {
56
56
windowMenu [ index ] . visible = true ;
57
57
58
58
const menuItem = {
59
- label : host . title ,
59
+ label : '&' + host . title ,
60
60
accelerator : `CmdOrCtrl+ ${ position } ` ,
61
61
position : 'before=server-list-separator' ,
62
62
id : host . url ,
You can’t perform that action at this time.
0 commit comments