Blame SOURCES/0001-cally-Fix-translation-to-screen-coordinates.patch

67f8b7
From 59eb6a6ff7d6356213db1ea22616315c215ae4a1 Mon Sep 17 00:00:00 2001
67f8b7
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
67f8b7
Date: Fri, 28 Apr 2017 17:12:40 +0200
67f8b7
Subject: [PATCH] cally: Fix translation to screen coordinates
67f8b7
67f8b7
Due to an accidental swap of an else statement and a preprocessor #else,
67f8b7
the output x coordinate is currently only set when not using the X11
67f8b7
windowing system, whoops.
67f8b7
67f8b7
https://bugzilla.gnome.org/show_bug.cgi?id=781902
67f8b7
---
67f8b7
 clutter/clutter/cally/cally-actor.c | 2 +-
67f8b7
 1 file changed, 1 insertion(+), 1 deletion(-)
67f8b7
67f8b7
diff --git a/clutter/clutter/cally/cally-actor.c b/clutter/clutter/cally/cally-actor.c
67f8b7
index fe3e27433..8ff5b09e1 100644
67f8b7
--- a/clutter/clutter/cally/cally-actor.c
67f8b7
+++ b/clutter/clutter/cally/cally-actor.c
67f8b7
@@ -780,8 +780,8 @@ _cally_actor_get_top_level_origin (ClutterActor *actor,
67f8b7
         g_warning ("[x11] We were not able to get proper absolute "
67f8b7
                    "position of the stage");
67f8b7
     }
67f8b7
-  else
67f8b7
 #else
67f8b7
+  else
67f8b7
     {
67f8b7
       static gboolean yet_warned = FALSE;
67f8b7
 
67f8b7
-- 
67f8b7
2.12.2
67f8b7