feat: rename Proxy label to Set Proxy

This commit is contained in:
JellyBrick
2023-10-07 22:27:08 +09:00
parent d45ca960b4
commit 0442e427a6

View File

@ -309,11 +309,10 @@ export const mainMenuTemplate = (win: BrowserWindow): MenuTemplate => {
label: 'Advanced options', label: 'Advanced options',
submenu: [ submenu: [
{ {
label: 'Proxy', label: 'Set Proxy',
type: 'checkbox', type: 'normal',
checked: !!(config.get('options.proxy')) && config.get('options.proxy') !== '', async click(item) {
click(item) { await setProxy(item, win);
setProxy(item, win);
}, },
}, },
{ {