Load files when in args

This commit is contained in:
2025-06-08 14:44:54 -05:00
parent 8b01314f43
commit 5b62163c4e
2 changed files with 3 additions and 1 deletions

View File

@@ -40,7 +40,8 @@ const createWindow = (startType = "build", debug = false, args = []) => {
});
win.once('ready-to-show', () => {
win.show()
win.show();
win.webContents.send('load-files', args);
});
menu.load(win);