summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2016-03-09 10:37:56 +0000
committerLionel Landwerlin <llandwerlin@gmail.com>2016-03-11 01:04:40 +0000
commitb8145f9d20f9d34bf13a79b1bed3fca4cb551f22 (patch)
tree8b33908e1aa1c42dae18b2d7be917941878ba14c
parent8d5919d5f8902025fc98242210f75f57764c02f6 (diff)
downloadclutter-gst-b8145f9d20f9d34bf13a79b1bed3fca4cb551f22.tar.gz
video-player: ensure background is opaque black
and not transparent black. https://bugzilla.gnome.org/show_bug.cgi?id=763367
-rw-r--r--examples/video-player.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/video-player.c b/examples/video-player.c
index 335cf60..9a4ccaf 100644
--- a/examples/video-player.c
+++ b/examples/video-player.c
@@ -431,7 +431,7 @@ main (int argc, char *argv[])
GstElement *goomsource;
GstIterator *iter;
ClutterActor *stage;
- ClutterColor stage_color = { 0x00, 0x00, 0x00, 0x00 };
+ ClutterColor stage_color = { 0x00, 0x00, 0x00, 0xff };
ClutterColor control_color1 = { 73, 74, 77, 0xee };
ClutterColor control_color2 = { 0xcc, 0xcc, 0xcc, 0xff };
GError *error = NULL;