From 00fccfdc1b2a57fcda9ec4c52ffe298bf68efa53 Mon Sep 17 00:00:00 2001 From: Andrew Zambazos Date: Sun, 18 Jan 2026 12:16:35 +1300 Subject: [PATCH] Fix double zoom bug in Big Picture Mode display scaling Removed unconditional CSS zoom call that was causing zoom to be applied twice (Electron zoom + CSS zoom), resulting in squared scaling values. Now correctly uses Electron zoom as primary with CSS as fallback only. --- renderer/bigpicture.js | 1 - 1 file changed, 1 deletion(-) diff --git a/renderer/bigpicture.js b/renderer/bigpicture.js index e7dc658..8275d63 100644 --- a/renderer/bigpicture.js +++ b/renderer/bigpicture.js @@ -196,7 +196,6 @@ function applyDisplayScale(scalePercent, reason = 'unknown') { } else { applyCssZoom(zoomFactor); } - applyCssZoom(zoomFactor); console.log(`[BigPicture] Applied display scale ${clampedPercent}% (zoom=${zoomFactor}) via ${reason}`); } catch (err) { console.warn('[BigPicture] Failed applying display scale:', err);