summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLa Ode Muh. Fadlun Akbar <[email protected]>2017-03-10 20:26:54 +0700
committermonsta <[email protected]>2017-03-25 23:41:51 +0300
commitdb380cc7bd2aacd5e3c68a2abbc36fd267a64daa (patch)
treee878b2fd3855c2e65a746a59a0acc22f8e2adc87
parent0b2d6bb914fdf215e3ec28997c4f193856e8e439 (diff)
downloadmate-desktop-db380cc7bd2aacd5e3c68a2abbc36fd267a64daa.tar.bz2
mate-desktop-db380cc7bd2aacd5e3c68a2abbc36fd267a64daa.tar.xz
mate-aboutdialog: Fix url is not centered
-rw-r--r--libmate-desktop/mate-aboutdialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmate-desktop/mate-aboutdialog.c b/libmate-desktop/mate-aboutdialog.c
index 29d5737..a867b5c 100644
--- a/libmate-desktop/mate-aboutdialog.c
+++ b/libmate-desktop/mate-aboutdialog.c
@@ -537,7 +537,7 @@ mate_about_dialog_init (MateAboutDialog *about)
priv->website_label = button = gtk_label_new ("");
gtk_widget_set_no_show_all (button, TRUE);
gtk_label_set_selectable (GTK_LABEL (button), TRUE);
- gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), button, TRUE, FALSE, 0);
g_signal_connect_swapped (button, "activate-link",
G_CALLBACK (mate_about_dialog_activate_link), about);