From 3464119588f11c08c042f7bd03074eda4ee330be Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 20:37:01 +0200 Subject: [PATCH] auto-git: [change] main.js --- main.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main.js b/main.js index 7575ed9..38ca462 100644 --- a/main.js +++ b/main.js @@ -1374,18 +1374,18 @@ function buildTrayMenu() { ipcMain.on('show-folder-context-menu', (event, folderPath) => { const win = BrowserWindow.fromWebContents(event.sender); const template = [ - { - label: 'Copy Folder Path', - click: () => { - clipboard.writeText(folderPath); - } - }, { label: 'Open Folder', click: () => { // öffnet den Ordner in der nativen Dateiansicht shell.openPath(folderPath); } + }, + { + label: 'Copy Folder Path', + click: () => { + clipboard.writeText(folderPath); + } } ]; const menu = Menu.buildFromTemplate(template);