[Finder에서 열기] 버튼과 관련 기능 삭제

This commit is contained in:
2026-05-14 17:16:02 +09:00
parent d0eca5f477
commit d4207b7c47
4 changed files with 2 additions and 14 deletions
+1 -4
View File
@@ -1,4 +1,4 @@
const { ipcMain, dialog, shell } = require('electron');
const { ipcMain, dialog } = require('electron');
function register(mainWindow) {
ipcMain.handle('select-folder', async () => {
@@ -10,9 +10,6 @@ function register(mainWindow) {
return result.filePaths[0];
});
ipcMain.handle('reveal-folder', async (_event, folderPath) => {
shell.openPath(folderPath);
});
}
module.exports = { register };