Trivial formatting fix

&& goes at the end of the line in GTK+ coding style.
This commit is contained in:
Matthias Clasen 2014-12-09 23:41:28 -05:00
parent 8463d0ee62
commit 45d0a5cc4b

View File

@ -2324,8 +2324,8 @@ gtk_box_reorder_child (GtkBox *box,
priv->children = g_list_insert_before (priv->children, new_link, child_info);
gtk_widget_child_notify (child, "position");
if (gtk_widget_get_visible (child)
&& gtk_widget_get_visible (GTK_WIDGET (box)))
if (gtk_widget_get_visible (child) &&
gtk_widget_get_visible (GTK_WIDGET (box)))
{
gtk_box_invalidate_order (box);
gtk_widget_queue_resize (child);