[Finder에서 열기] 버튼과 관련 기능 삭제
This commit is contained in:
@@ -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 };
|
||||
Reference in New Issue
Block a user