From 523ce91120ac213cb49c7bedd77559db009cce02 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 20:35:47 +0200 Subject: [PATCH] Fix typo in label for copying folder path --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index b2cd32f..f26f5ec 100644 --- a/main.js +++ b/main.js @@ -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 }, {