aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/stores/AppStore.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 168aa7e48..0bd1518d5 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -176,6 +176,20 @@ export default class AppStore extends Store {
176 }, 176 },
177 ); 177 );
178 178
179 // We need to add an additional key listener for ctrl+ on windows. Otherwise only ctrl+shift+ would work
180 if (isWindows) {
181 key(
182 'ctrl+=', () => {
183 debug('Windows: zoom in via ctrl+');
184 const { webview } = this.stores.services.active;
185 webview.getZoomLevel((level) => {
186 // level 9 =~ +300% and setZoomLevel wouldnt zoom in further
187 if (level < 9) webview.setZoomLevel(level + 1);
188 });
189 },
190 );
191 }
192
179 this.locale = this._getDefaultLocale(); 193 this.locale = this._getDefaultLocale();
180 194
181 this._healthCheck(); 195 this._healthCheck();