diff options
author | Alexander Larsson <alexl@redhat.com> | 2011-12-06 14:11:44 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2011-12-06 14:12:24 +0100 |
commit | 288b1539d1062c4d5e6b510e33fda6b97232f21b (patch) | |
tree | b417f47db5f070d758095b02f698359035feccee /demos | |
parent | 7bd2446801ffd0fc2ac5cc98fcd675ac4f3935d6 (diff) | |
download | gtk+-288b1539d1062c4d5e6b510e33fda6b97232f21b.tar.gz |
Fix demo to use a "normal" transparent value now that it works.
The last commit fixed this, so lets have a sane value in the demo code.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/gtk-demo/transparent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/gtk-demo/transparent.c b/demos/gtk-demo/transparent.c index d1b2cb4f97..21c6a0b584 100644 --- a/demos/gtk-demo/transparent.c +++ b/demos/gtk-demo/transparent.c @@ -191,7 +191,7 @@ do_transparent (GtkWidget *do_widget) GtkWidget *overlay; GtkWidget *align; GtkWidget *entry; - GdkRGBA transparent = {0.1, 0, 0, 0}; + GdkRGBA transparent = {0, 0, 0, 0}; window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_window_set_screen (GTK_WINDOW (window), |