Fixing GtkColorButton to redraw itself when gtk_color_button_set_rgba() is called.

This commit is contained in:
Tristan Van Berkom 2011-02-03 23:02:15 +09:00
parent b01fc35c18
commit d799d6d4f0

View File

@ -786,6 +786,8 @@ gtk_color_button_set_rgba (GtkColorButton *color_button,
color_button->priv->rgba = *rgba;
gtk_widget_queue_draw (color_button->priv->draw_area);
g_object_notify (G_OBJECT (color_button), "rgba");
}