[gnome-shell] shell-recorder: Restore cursor recording



commit 55b036170b5aafa542bbe84492066c2315be231b
Author: Illya Klymov <xanf xanf me>
Date:   Mon Jul 8 03:29:36 2019 +0000

    shell-recorder: Restore cursor recording
    
    Due to changes introduced in 5357e0a1 cursor recording interaction with
    magnifier was reversed. This fix restores original correct behavior
    Related issue: https://gitlab.gnome.org/GNOME/gnome-shell/issues/1208

 src/shell-recorder.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/shell-recorder.c b/src/shell-recorder.c
index 0203ecf1c..cf1cc336f 100644
--- a/src/shell-recorder.c
+++ b/src/shell-recorder.c
@@ -465,7 +465,7 @@ recorder_record_frame (ShellRecorder *recorder,
 
       g_object_get (settings, "magnifier-active", &magnifier_active, NULL);
 
-      if (magnifier_active)
+      if (!magnifier_active)
         recorder_draw_cursor (recorder, buffer);
     }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]