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',
submenu: [
{
label: 'Proxy',
type: 'checkbox',
checked: !!(config.get('options.proxy')) && config.get('options.proxy') !== '',
click(item) {
setProxy(item, win);
label: 'Set Proxy',
type: 'normal',
async click(item) {
await setProxy(item, win);
},
},
{