1
0
Fork 0
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:
Andrew Simachev 2021-11-19 18:35:05 +03:00
parent 179e166e33
commit 4aadfefd90
2 changed files with 9 additions and 5 deletions

View file

@ -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' },