Fix typo in label for copying folder path
This commit is contained in:
4
main.js
4
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
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user