aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts
index cbc10bdbe..5accc4570 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -674,6 +674,16 @@ ipcMain.on('window.toolbar-double-clicked', () => {
674 } 674 }
675}); 675});
676 676
677ipcMain.on('stop-download', (_e, data) => {
678 debug(`stopping download from main process ${data}`);
679 mainWindow?.webContents.send('stop-download', data);
680});
681
682ipcMain.on('toggle-pause-download', (_e, data) => {
683 debug(`stopping download from main process ${data}`);
684 mainWindow?.webContents.send('toggle-pause-download', data);
685});
686
677// Quit when all windows are closed. 687// Quit when all windows are closed.
678app.on('window-all-closed', () => { 688app.on('window-all-closed', () => {
679 // On OS X it is common for applications and their menu bar 689 // On OS X it is common for applications and their menu bar