mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
#1t1wxv9: fix
This commit is contained in:
parent
179e166e33
commit
4aadfefd90
2 changed files with 9 additions and 5 deletions
|
@ -136,18 +136,18 @@ function initTray () {
|
|||
|
||||
{ type: 'separator' },
|
||||
|
||||
{ label: 'Settings', click: () => { win.show(); send('popup', 'settings'); } },
|
||||
{ label: 'Settings', click: () => { win.show(); send('popup', 'settings', {}, true); } },
|
||||
{ label: 'Check for updates', click: () => { win.show(); checkUpdate(false); } },
|
||||
|
||||
{ type: 'separator' },
|
||||
|
||||
{ label: 'Import', click: () => { win.show(); send('popup', 'settings', { data: { page: 'importIndex' } }); } },
|
||||
{ label: 'Export', click: () => { win.show(); send('popup', 'settings', { data: { page: 'exportMarkdown' } }); } },
|
||||
{ label: 'Import', click: () => { win.show(); send('popup', 'settings', { data: { page: 'importIndex' } }, true); } },
|
||||
{ label: 'Export', click: () => { win.show(); send('popup', 'settings', { data: { page: 'exportMarkdown' } }, true); } },
|
||||
|
||||
{ type: 'separator' },
|
||||
|
||||
{ label: 'New object', click: () => { win.show(); send('command', 'create'); } },
|
||||
{ label: 'Search object', click: () => { win.show(); send('popup', 'search', { preventResize: true }); } },
|
||||
{ label: 'Search object', click: () => { win.show(); send('popup', 'search', { preventResize: true }, true); } },
|
||||
|
||||
{ type: 'separator' },
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue