Skip to content

Commit 26fda1f

Browse files
🛠️ fix: show main window after finishing recording
The main window is now shown after finishing recording to bring focus back to the main application. This improves user experience as the user can now interact with the main application without having to manually click on it.
1 parent 9985e32 commit 26fda1f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

apps/desktop/electron/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ ipcMain.handle('stop-recording', async (_) => {
248248
console.log("finsihed recoridng, opening mainwindow")
249249
mainWindow.webContents.send('finished-recording', true);
250250
mainWindow.focus();
251+
mainWindow.show();
251252
}
252253
});
253254

0 commit comments

Comments
 (0)