From 41b73d93726670920721a2176e6ac52a66d13f5c Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 20:35:32 +0200 Subject: [PATCH] auto-git: [change] main.js --- main.js | 11 +++++++++++ 1 file changed, 11 insertions(+) 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',