summaryrefslogtreecommitdiff
path: root/packaging/fix-colors.patch
blob: 59e69352b3471df62f509b4de7b7ea43160ce993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff -Naur clutter-toys-0.1/circles/circles.c clutter-toys-0.1-new/circles/circles.c
--- clutter-toys-0.1/circles/circles.c	2012-03-19 13:20:31.309711495 -0700
+++ clutter-toys-0.1-new/circles/circles.c	2012-03-20 13:48:21.092969742 -0700
@@ -16,7 +16,7 @@
 static void
 circle_paint_cb (ClutterActor *actor)
 {
-  const CoglColor fill_color = { 0xff, 0xff, 0xff, 0x80 };
+  const CoglColor fill_color = { 0x00, 0xff, 0xff, 0x80 };
   gint i;
   gdouble angle;
   guint radius = clutter_actor_get_width (actor) / 2;
diff -Naur clutter-toys-0.1/ripples/ripples.c clutter-toys-0.1-new/ripples/ripples.c
--- clutter-toys-0.1/ripples/ripples.c	2012-03-19 13:20:31.309711495 -0700
+++ clutter-toys-0.1-new/ripples/ripples.c	2012-03-20 13:49:20.216971928 -0700
@@ -19,7 +19,7 @@
   float radius = clutter_actor_get_width (actor) / 2;
 
   cogl_color_set_from_4ub (&fill_color,
-                           255,
+                           0,
                            255,
                            255,
                            clutter_actor_get_paint_opacity (actor));