diff --git a/packages/bruno-electron/src/index.js b/packages/bruno-electron/src/index.js index 1470a6d9a..c567f48c1 100644 --- a/packages/bruno-electron/src/index.js +++ b/packages/bruno-electron/src/index.js @@ -93,6 +93,7 @@ let appProtocolUrl; // Helper function to focus and restore the main window const focusMainWindow = () => { if (mainWindow) { + app.focus({ steal: true }); if (mainWindow.isMinimized()) { mainWindow.restore(); }