From 2b962c5d066787601223368ee7dcc1e46a345b8a Mon Sep 17 00:00:00 2001 From: a distraction <106486896+dresklaw@users.noreply.github.com> Date: Tue, 17 Feb 2026 15:59:18 -0400 Subject: [PATCH] fix: allow CTRL+"+" to also zoom in. (#108) Allow "+" to also zoom in. Signed-off-by: a distraction <106486896+dresklaw@users.noreply.github.com> Co-authored-by: Paul Makles --- src/native/window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/window.ts b/src/native/window.ts index cf1064b..346782c 100644 --- a/src/native/window.ts +++ b/src/native/window.ts @@ -111,7 +111,7 @@ export function createMainWindow() { // rebind zoom controls to be more sensible mainWindow.webContents.on("before-input-event", (event, input) => { - if (input.control && input.key === "=") { + if (input.control && (input.key === "=" || input.key === "+")) { // zoom in (+) event.preventDefault(); mainWindow.webContents.setZoomLevel(