Merge pull request #130 from feross/fix-128
fix fullscreen / float on top menu item exception
This commit is contained in:
commit
0199ff957c
1 changed files with 2 additions and 2 deletions
|
|
@ -184,12 +184,12 @@ function getAppMenuTemplate () {
|
|||
accelerator: process.platform === 'darwin'
|
||||
? 'Ctrl+Command+F'
|
||||
: 'F11',
|
||||
click: toggleFullScreen
|
||||
click: () => toggleFullScreen()
|
||||
},
|
||||
{
|
||||
label: 'Float on Top',
|
||||
type: 'checkbox',
|
||||
click: toggleFloatOnTop
|
||||
click: () => toggleFloatOnTop()
|
||||
},
|
||||
{
|
||||
type: 'separator'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue