mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
fix
This commit is contained in:
commit
031bd48c15
21 changed files with 76 additions and 41 deletions
|
@ -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', {}); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue