diff options
author | La Ode Muh. Fadlun Akbar <[email protected]> | 2017-03-10 20:26:54 +0700 |
---|---|---|
committer | monsta <[email protected]> | 2017-03-13 12:46:45 +0300 |
commit | 229ff51f5d25ae9cce334d5ea3e96d5eb34f4dfa (patch) | |
tree | 9e30797227ca4df76ad300ec66c12bb6bd593f4c | |
parent | 970f027a7b245f4782827834f265294c5a0770db (diff) | |
download | mate-desktop-229ff51f5d25ae9cce334d5ea3e96d5eb34f4dfa.tar.bz2 mate-desktop-229ff51f5d25ae9cce334d5ea3e96d5eb34f4dfa.tar.xz |
mate-aboutdialog: Fix url is not centered
-rw-r--r-- | libmate-desktop/mate-aboutdialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmate-desktop/mate-aboutdialog.c b/libmate-desktop/mate-aboutdialog.c index 0e9a39b..6ba325f 100644 --- a/libmate-desktop/mate-aboutdialog.c +++ b/libmate-desktop/mate-aboutdialog.c @@ -523,7 +523,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); |