Blame SOURCES/32.patch

1e8244
From 423119599c7a98dc51dda6e5260c992e21438d60 Mon Sep 17 00:00:00 2001
1e8244
From: Carlos Garnacho <carlosg@gnome.org>
1e8244
Date: Mar 31 2021 16:40:10 +0000
1e8244
Subject: extension: Do not relayout on scale changes
1e8244
1e8244
1e8244
This makes the background logo position flicker as we enter the
1e8244
overview. This actor is part of the BackgroundActor actor hierarchy,
1e8244
and can be left to scale neatly with it.
1e8244
1e8244
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1943938
1e8244
1e8244
---
1e8244
1e8244
diff --git a/extension.js b/extension.js
1e8244
index d1bf35b..edf2868 100644
1e8244
--- a/extension.js
1e8244
+++ b/extension.js
1e8244
@@ -25,13 +25,6 @@ var IconContainer = GObject.registerClass(
1e8244
 class IconContainer extends St.Widget {
1e8244
     _init(params) {
1e8244
         super._init(params);
1e8244
-
1e8244
-        this.connect('notify::scale-x', () => {
1e8244
-            this.queue_relayout();
1e8244
-        });
1e8244
-        this.connect('notify::scale-y', () => {
1e8244
-            this.queue_relayout();
1e8244
-        });
1e8244
     }
1e8244
 
1e8244
     vfunc_get_preferred_width(forHeight) {
1e8244