From de5184ce2278343bc0e78682df8e04f89a282063 Mon Sep 17 00:00:00 2001 From: itdominator <1itdominator@gmail.com> Date: Sun, 23 Nov 2025 16:11:04 -0600 Subject: [PATCH] Added show and focus on ipc load-file --- newton/ipc.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/newton/ipc.js b/newton/ipc.js index 26e52e4..23e6487 100644 --- a/newton/ipc.js +++ b/newton/ipc.js @@ -42,6 +42,9 @@ const loadIPCServer = (fpath) => { console.debug("Load File(s) : ", req.body); window.webContents.send('load-files', req.body); + window.show(); + window.focus(); + res.status(200).send(''); });