mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-12 03:40:10 +00:00
Set a default value for rgba style properties
This commit is contained in:
parent
5b6bdcf016
commit
4b10167ce6
@ -855,6 +855,12 @@ lookup_default_value (PropertyNode *node,
|
||||
g_value_set_object (value, gtk_theming_engine_load (NULL));
|
||||
else if (node->pspec->value_type == PANGO_TYPE_FONT_DESCRIPTION)
|
||||
g_value_take_boxed (value, pango_font_description_from_string ("Sans 10"));
|
||||
else if (node->pspec->value_type == GDK_TYPE_RGBA)
|
||||
{
|
||||
GdkRGBA color;
|
||||
gdk_rgba_parse (&color, "pink");
|
||||
g_value_set_boxed (value, &color);
|
||||
}
|
||||
else
|
||||
g_param_value_set_default (node->pspec, value);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user