diff --git a/main/index.ts b/main/index.ts index eaf52b42..f195d8b0 100644 --- a/main/index.ts +++ b/main/index.ts @@ -124,6 +124,12 @@ const checkForUpdates = () => { checkForUpdates(); })(); +app.on('activate', () => { + if (!windowManager.cropper.isOpen()) { + windowManager.cropper?.open(); + } +}); + app.on('window-all-closed', (event: any) => { app.dock.hide(); event.preventDefault();