mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
electron menu fix
This commit is contained in:
parent
21f75aa6d7
commit
ed0bc9f28f
1 changed files with 15 additions and 10 deletions
25
electron.js
25
electron.js
|
@ -133,16 +133,21 @@ function createWindow () {
|
|||
label: 'Debug',
|
||||
submenu: [
|
||||
{
|
||||
label: 'Alpha version', accelerator: 'CmdOrCtrl+R',
|
||||
click: function () {
|
||||
setChannel('alpha');
|
||||
}
|
||||
},
|
||||
{
|
||||
label: 'Public version', accelerator: 'CmdOrCtrl+R',
|
||||
click: function () {
|
||||
setChannel('latest');
|
||||
}
|
||||
label: 'Version',
|
||||
submenu: [
|
||||
{
|
||||
label: 'Alpha',
|
||||
click: function () {
|
||||
setChannel('alpha');
|
||||
}
|
||||
},
|
||||
{
|
||||
label: 'Public',
|
||||
click: function () {
|
||||
setChannel('latest');
|
||||
}
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
label: 'Refresh', accelerator: 'CmdOrCtrl+R',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue