mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-12 21:40:19 +00:00
Correctly treat GdkColor properties
Noticed by Daniel Garcia, https://bugzilla.gnome.org/show_bug.cgi?id=642782
This commit is contained in:
parent
5e5f232e78
commit
1fb8812082
@ -720,11 +720,12 @@ gail_misc_buffer_get_run_attributes (GtkTextBuffer *buffer,
|
|||||||
g_object_get (tag, "foreground-set", &val_set, NULL);
|
g_object_get (tag, "foreground-set", &val_set, NULL);
|
||||||
if (val_set)
|
if (val_set)
|
||||||
{
|
{
|
||||||
GdkColor c;
|
GdkColor *c;
|
||||||
gchar *value;
|
gchar *value;
|
||||||
|
|
||||||
g_object_get (tag, "foreground-gdk", &c, NULL);
|
g_object_get (tag, "foreground-gdk", &c, NULL);
|
||||||
value = g_strdup_printf ("%u,%u,%u", c.red, c.green, c.blue);
|
value = g_strdup_printf ("%u,%u,%u", c->red, c->green, c->blue);
|
||||||
|
gdk_color_free (c);
|
||||||
attrib_set = gail_misc_add_attribute (attrib_set, ATK_TEXT_ATTR_FG_COLOR, value);
|
attrib_set = gail_misc_add_attribute (attrib_set, ATK_TEXT_ATTR_FG_COLOR, value);
|
||||||
}
|
}
|
||||||
temp_tags = temp_tags->next;
|
temp_tags = temp_tags->next;
|
||||||
@ -739,11 +740,12 @@ gail_misc_buffer_get_run_attributes (GtkTextBuffer *buffer,
|
|||||||
g_object_get (tag, "background-set", &val_set, NULL);
|
g_object_get (tag, "background-set", &val_set, NULL);
|
||||||
if (val_set)
|
if (val_set)
|
||||||
{
|
{
|
||||||
GdkColor c;
|
GdkColor *c;
|
||||||
gchar *value;
|
gchar *value;
|
||||||
|
|
||||||
g_object_get (tag, "background-gdk", &c, NULL);
|
g_object_get (tag, "background-gdk", &c, NULL);
|
||||||
value = g_strdup_printf ("%u,%u,%u", c.red, c.green, c.blue);
|
value = g_strdup_printf ("%u,%u,%u", c->red, c->green, c->blue);
|
||||||
|
gdk_color_free (c);
|
||||||
attrib_set = gail_misc_add_attribute (attrib_set, ATK_TEXT_ATTR_BG_COLOR, value);
|
attrib_set = gail_misc_add_attribute (attrib_set, ATK_TEXT_ATTR_BG_COLOR, value);
|
||||||
}
|
}
|
||||||
temp_tags = temp_tags->next;
|
temp_tags = temp_tags->next;
|
||||||
|
Loading…
Reference in New Issue
Block a user