From 6cc8a9e645e26122b95bf2623b6dd5e7ba1126a5 Mon Sep 17 00:00:00 2001 From: adrien Date: Tue, 8 Apr 2025 00:46:47 +0200 Subject: [PATCH] fix zoom --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index 5596cfa..dcb3b7a 100644 --- a/js/app.js +++ b/js/app.js @@ -310,5 +310,5 @@ screenRow.onwheel = function(event) { event.stopPropagation() let tZ = parseInt(getComputedStyle(screenRow).getPropertyValue("--tZ")) tZ += event.deltaY - screenRow.style.setProperty("--tZ", zoom + "px") + screenRow.style.setProperty("--tZ", tZ + "px") } \ No newline at end of file