mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-07 09:10:11 +00:00
stylecontext: On failure, exit the loop, don't try again
Because we will fail again. And then we try again. And then we fail again. Ad infinitum.
This commit is contained in:
parent
15be680540
commit
198cf93f0f
@ -2469,7 +2469,7 @@ gtk_style_context_get_style_valist (GtkStyleContext *context,
|
||||
G_STRLOC,
|
||||
g_type_name (widget_type),
|
||||
prop_name);
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
|
||||
peek_value = _gtk_style_context_peek_style_property (context, widget_type,
|
||||
@ -2484,6 +2484,7 @@ gtk_style_context_get_style_valist (GtkStyleContext *context,
|
||||
G_VALUE_TYPE_NAME (peek_value),
|
||||
error);
|
||||
g_free (error);
|
||||
break;
|
||||
}
|
||||
|
||||
prop_name = va_arg (args, const gchar *);
|
||||
|
Loading…
Reference in New Issue
Block a user