From 806098a5ef92c740b4a32786409d732b7b485b76 Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Sat, 2 Dec 2023 05:11:27 +0900 Subject: [PATCH] feat(tray): add separator --- src/tray.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tray.ts b/src/tray.ts index 9ce2fd2e..853f6540 100644 --- a/src/tray.ts +++ b/src/tray.ts @@ -96,10 +96,12 @@ export const setUpTray = (app: Electron.App, win: Electron.BrowserWindow) => { app.dock?.show(); }, }, + { type: 'separator' }, { label: t('main.tray.restart'), click: restart, }, + { type: 'separator' }, { label: t('main.tray.quit'), role: 'quit',