aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts
index b4a754289..89903a669 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -627,6 +627,10 @@ ipcMain.on('set-spellchecker-locales', (_e, { locale, serviceId }) => {
627 serviceSession.setSpellCheckerLanguages(locales); 627 serviceSession.setSpellCheckerLanguages(locales);
628}); 628});
629 629
630ipcMain.on('window.toolbar-double-clicked', () => {
631 mainWindow?.isMaximized() ? mainWindow.unmaximize() : mainWindow?.maximize();
632});
633
630// Quit when all windows are closed. 634// Quit when all windows are closed.
631app.on('window-all-closed', () => { 635app.on('window-all-closed', () => {
632 // On OS X it is common for applications and their menu bar 636 // On OS X it is common for applications and their menu bar