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);