diff --git a/main.js b/main.js index ce39e79..b2cd32f 100644 --- a/main.js +++ b/main.js @@ -1401,9 +1401,20 @@ ipcMain.on('show-tree-context-menu', (event, { absPath, relPath, root, type }) = click: () => shell.openPath(absPath), visible: type === 'file' // Nur für Dateien anzeigen }, + { + label: 'Open Folder', + click: () => shell.openPath(absPath), + visible: type === 'folder' // Nur für Dateien anzeigen + }, { label: 'Copy File Path', click: () => clipboard.writeText(absPath) + visible: type === 'file' // Nur für Dateien anzeigen + }, + { + label: 'Copy Folder Path', + click: () => clipboard.writeText(absPath) + visible: type === 'folder' // Nur für Dateien anzeigen }, { label: 'Add to .gitignore',