From 1d4e6861ba715faefa8ed6ed6c93e1ea5759b657 Mon Sep 17 00:00:00 2001 From: a distraction <106486896+dresklaw@users.noreply.github.com> Date: Sun, 15 Feb 2026 02:51:41 -0400 Subject: [PATCH] Allow "+" to also zoom in. Signed-off-by: a distraction <106486896+dresklaw@users.noreply.github.com> --- 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 450124e..578446c 100644 --- a/src/native/window.ts +++ b/src/native/window.ts @@ -105,7 +105,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(