1
0

auto-git:

[change] main.js
This commit is contained in:
2025-05-26 20:35:32 +02:00
parent e5fce2e7d5
commit 41b73d9372

11
main.js
View File

@@ -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',