From a363f1343a74ae3265c11db9220ebd6eec0e21e1 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Mon, 28 Jun 2021 14:17:25 +0200 Subject: [PATCH] magnifier: Unset variable holding GSource ID Otherwise we try to remove the no longer existing GSource later on. Part-of: --- js/ui/magnifier.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/magnifier.js b/js/ui/magnifier.js index d818a75b0..22c11766b 100644 --- a/js/ui/magnifier.js +++ b/js/ui/magnifier.js @@ -1166,6 +1166,8 @@ var ZoomRegion = class ZoomRegion { this._yDelayed = null; } + this._scrollContentsTimerId = 0; + return GLib.SOURCE_REMOVE; });