Blame SOURCES/0001-shell-recorder-Restore-cursor-recording.patch

22c471
From 3182ad73c8f88628cb51a96feba0fc32ce7f01c9 Mon Sep 17 00:00:00 2001
22c471
From: Illya Klymov <xanf@xanf.me>
22c471
Date: Mon, 8 Jul 2019 03:29:36 +0000
22c471
Subject: [PATCH] shell-recorder: Restore cursor recording
22c471
22c471
Due to changes introduced in 5357e0a1 cursor recording interaction with
22c471
magnifier was reversed. This fix restores original correct behavior
22c471
Related issue: https://gitlab.gnome.org/GNOME/gnome-shell/issues/1208
22c471
---
22c471
 src/shell-recorder.c | 2 +-
22c471
 1 file changed, 1 insertion(+), 1 deletion(-)
22c471
22c471
diff --git a/src/shell-recorder.c b/src/shell-recorder.c
22c471
index 0203ecf1c..cf1cc336f 100644
22c471
--- a/src/shell-recorder.c
22c471
+++ b/src/shell-recorder.c
22c471
@@ -465,7 +465,7 @@ recorder_record_frame (ShellRecorder *recorder,
22c471
 
22c471
       g_object_get (settings, "magnifier-active", &magnifier_active, NULL);
22c471
 
22c471
-      if (magnifier_active)
22c471
+      if (!magnifier_active)
22c471
         recorder_draw_cursor (recorder, buffer);
22c471
     }
22c471
 
22c471
-- 
22c471
2.35.1
22c471