1
0

Fix typo in label for copying folder path

This commit is contained in:
2025-05-26 20:35:47 +02:00
parent 41b73d9372
commit 523ce91120

View File

@@ -1408,12 +1408,12 @@ ipcMain.on('show-tree-context-menu', (event, { absPath, relPath, root, type }) =
},
{
label: 'Copy File Path',
click: () => clipboard.writeText(absPath)
click: () => clipboard.writeText(absPath),
visible: type === 'file' // Nur für Dateien anzeigen
},
{
label: 'Copy Folder Path',
click: () => clipboard.writeText(absPath)
click: () => clipboard.writeText(absPath),
visible: type === 'folder' // Nur für Dateien anzeigen
},
{