1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00
This commit is contained in:
Andrew Simachev 2021-09-03 18:54:11 +03:00
commit 031bd48c15
21 changed files with 76 additions and 41 deletions

View file

@ -195,6 +195,7 @@ function createWindow () {
enableRemoteModule: true,
nodeIntegration: true,
contextIsolation: false,
spellcheck: false
},
};
@ -581,6 +582,13 @@ function menuInit () {
menuParam.push({
label: 'Sudo',
submenu: [
{
label: 'Experimental', type: 'checkbox', checked: config.experimental,
click: () => {
setConfig({ experimental: !config.experimental });
win.reload();
}
},
{
label: 'Graph',
click: () => { send('popup', 'graph', {}); }