diff options
author | Benjamin Otte <otte@redhat.com> | 2014-10-03 06:48:18 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2014-10-03 06:48:18 +0200 |
commit | 2b6a4ba8907c82ba1844711606a3cf6292fe25e2 (patch) | |
tree | 7c40b605bfc0a5f3e84cfb23e0f73ed5a0ae29b3 /demos | |
parent | 23a4affb6f158275cdd5e8e824240f6a5c4190a9 (diff) | |
download | gtk+-2b6a4ba8907c82ba1844711606a3cf6292fe25e2.tar.gz |
gtk-demo: Remove useless code in colorsel example
We have the color stored in a global variable already. There is
absolutely no need to also force it into the CSS machinery.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/gtk-demo/colorsel.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/demos/gtk-demo/colorsel.c b/demos/gtk-demo/colorsel.c index 73a9505ac6..8f0cc188c2 100644 --- a/demos/gtk-demo/colorsel.c +++ b/demos/gtk-demo/colorsel.c @@ -20,12 +20,7 @@ draw_callback (GtkWidget *widget, cairo_t *cr, gpointer data) { - GtkStyleContext *context; - GdkRGBA rgba; - - context = gtk_widget_get_style_context (widget); - gtk_style_context_get_background_color (context, GTK_STATE_FLAG_NORMAL, &rgba); - gdk_cairo_set_source_rgba (cr, &rgba); + gdk_cairo_set_source_rgba (cr, &color); cairo_paint (cr); return TRUE; @@ -39,7 +34,6 @@ response_cb (GtkDialog *dialog, if (response_id == GTK_RESPONSE_OK) { gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (dialog), &color); - gtk_widget_override_background_color (da, 0, &color); } gtk_widget_destroy (GTK_WIDGET (dialog)); @@ -105,8 +99,6 @@ do_colorsel (GtkWidget *do_widget) /* set a minimum size */ gtk_widget_set_size_request (da, 200, 200); - /* set the color */ - gtk_widget_override_background_color (da, 0, &color); gtk_container_add (GTK_CONTAINER (frame), da); |