diff --git a/toys/mug/mug-msg-view.c b/toys/mug/mug-msg-view.c index 9bb40901..cf2228ea 100644 --- a/toys/mug/mug-msg-view.c +++ b/toys/mug/mug-msg-view.c @@ -130,10 +130,8 @@ create_table (MugMsgViewPrivate *priv, const HeaderInfo *hinfo, guint num) gtk_label_set_markup (GTK_LABEL(l), str); g_free (str); - gtk_table_attach (GTK_TABLE(table), l, - 0, 1, i, i+1, - GTK_FILL, GTK_FILL, - 0, 0); + gtk_table_attach (GTK_TABLE(table), l, 0, 1, i, i+1, + GTK_FILL, GTK_FILL, 0, 0); l = priv->_headervals[hinfo[i].row] = gtk_label_new (NULL); al = gtk_alignment_new(0.0, 0.0, 0.0, 0.0); @@ -144,8 +142,7 @@ create_table (MugMsgViewPrivate *priv, const HeaderInfo *hinfo, guint num) gtk_container_add (GTK_CONTAINER(al), l); gtk_label_set_justify (GTK_LABEL(l), GTK_JUSTIFY_LEFT); gtk_table_attach (GTK_TABLE(table), al, - 1, 2, i, i+1, - GTK_FILL, GTK_FILL, + 1, 2, i, i+1, GTK_FILL, GTK_FILL, 0, 0); }