From 3e677ab95651eafd39e1addcd9669fa76ec73a29 Mon Sep 17 00:00:00 2001 From: FlorianButz Date: Sun, 12 Apr 2026 14:34:45 +0200 Subject: [PATCH] chore: Fix zap dissolve positioning --- src/zen/boosts/ZenZapDissolve.sys.mjs | 4 ++-- src/zen/boosts/zen-zap.css | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/zen/boosts/ZenZapDissolve.sys.mjs b/src/zen/boosts/ZenZapDissolve.sys.mjs index 860aff172..76402463c 100644 --- a/src/zen/boosts/ZenZapDissolve.sys.mjs +++ b/src/zen/boosts/ZenZapDissolve.sys.mjs @@ -509,8 +509,8 @@ void main() { ctx.drawWindow( this.window, - rect.left, - rect.top, + rect.left + this.window.scrollX, + rect.top + this.window.scrollY, rect.width, rect.height, "rgba(0,0,0,0)" diff --git a/src/zen/boosts/zen-zap.css b/src/zen/boosts/zen-zap.css index 6c65934d1..d1e2ae940 100644 --- a/src/zen/boosts/zen-zap.css +++ b/src/zen/boosts/zen-zap.css @@ -148,7 +148,7 @@ } #zen-zap-dissolve-canvas { - position: absolute !important; + position: fixed !important; width: 100% !important; height: 100% !important; left: 0 !important;