We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96fa00c + 9d5d4da commit e1ac477Copy full SHA for e1ac477
src/electron/menu.js
@@ -40,6 +40,18 @@ function getTemplate(_window) {
40
}
41
]
42
},
43
+ {
44
+ label: 'Connect',
45
+ submenu: [
46
47
+ label: 'Connect to...',
48
+ accelerator: 'Command+N',
49
+ click: function() {
50
+ app.emit('show connect dialog');
51
+ }
52
53
+ ]
54
+ },
55
{
56
label: 'Edit',
57
submenu: [
@@ -81,13 +93,6 @@ function getTemplate(_window) {
81
93
82
94
label: 'View',
83
95
84
- {
85
- label: 'Connect to...',
86
- accelerator: 'Command+N',
87
- click: function() {
88
- app.emit('show connect dialog');
89
- }
90
- },
91
96
92
97
label: 'Reload',
98
accelerator: 'Command+R',
0 commit comments