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:
Benjamin Otte 2012-03-20 03:44:26 +01:00
parent 15be680540
commit 198cf93f0f

View File

@ -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 *);