forked from AuroraMiddleware/gtk
stylecontext: Only look up stuff in the cache that can be in the cache
Only saved styles are stored in the cache so we should look only those up there.
This commit is contained in:
parent
77b876fad3
commit
85dd685b3f
@ -729,6 +729,8 @@ style_values_lookup (GtkStyleContext *context)
|
||||
|
||||
g_assert (priv->widget != NULL || priv->widget_path != NULL);
|
||||
|
||||
if (gtk_style_context_is_saved (context))
|
||||
{
|
||||
values = g_hash_table_lookup (priv->style_values, info->decl);
|
||||
if (values)
|
||||
{
|
||||
@ -736,9 +738,6 @@ style_values_lookup (GtkStyleContext *context)
|
||||
return values;
|
||||
}
|
||||
|
||||
|
||||
if (gtk_style_context_is_saved (context))
|
||||
{
|
||||
values = gtk_css_static_style_new ();
|
||||
g_hash_table_insert (priv->style_values,
|
||||
gtk_css_node_declaration_ref (info->decl),
|
||||
|
Loading…
Reference in New Issue
Block a user