You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
916 B
29 lines
916 B
From 3182ad73c8f88628cb51a96feba0fc32ce7f01c9 Mon Sep 17 00:00:00 2001
|
|
From: Illya Klymov <xanf@xanf.me>
|
|
Date: Mon, 8 Jul 2019 03:29:36 +0000
|
|
Subject: [PATCH] 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);
|
|
}
|
|
|
|
--
|
|
2.35.1
|
|
|