fix: resolve space-in-argument bug and implement premium centered glassmorphic error overlay modal

This commit is contained in:
Ümit Tunç
2026-05-23 11:13:40 +03:00
parent f1d3e3c5b5
commit 1204c8e3ed
3 changed files with 73 additions and 9 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ ipcMain.handle('remove-background', async (event, { inputPath, outputPath }) =>
console.log(`[Main Process] Spawning background removal: ${venvPython} ${processScript}`);
// Spawn venv python to run process.py
const args = ['--input', inputPath, '--output', outputPath];
const process = spawn(venvPython, [processScript, ...args], { shell: true });
const process = spawn(venvPython, [processScript, ...args], { shell: false });
let stderrData = '';