forked from AuroraMiddleware/gtk
label: Avoid creating new attribute list
Only create an attribute list for merging if we actually need to merge.
This bug was introduced in 5230cfe805
This commit is contained in:
parent
4439453b75
commit
a0bfbc8ae1
@ -3361,7 +3361,7 @@ gtk_label_ensure_layout (GtkLabel *label)
|
||||
pango_attr_list_insert (attrs, attribute);
|
||||
}
|
||||
}
|
||||
else if (priv->markup_attrs || priv->attrs)
|
||||
else if (priv->markup_attrs && priv->attrs)
|
||||
attrs = pango_attr_list_new ();
|
||||
else
|
||||
attrs = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user