summaryrefslogtreecommitdiff
path: root/capplets/about-me
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-02-04 13:59:26 +0300
committermonsta <[email protected]>2016-02-04 14:08:33 +0300
commit73bc9f672f869f4685076ac6cafe76988cadbbf2 (patch)
tree0f786f57f9e989e4607bb19d5b071eabdeec564a /capplets/about-me
parent529814000d3bdd36675d5a4bf7395f49600c5332 (diff)
downloadmate-control-center-73bc9f672f869f4685076ac6cafe76988cadbbf2.tar.bz2
mate-control-center-73bc9f672f869f4685076ac6cafe76988cadbbf2.tar.xz
[GTK+3] don't set x/y align to 0.5 - it's the default value anyway
Diffstat (limited to 'capplets/about-me')
-rw-r--r--capplets/about-me/eel-alert-dialog.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/capplets/about-me/eel-alert-dialog.c b/capplets/about-me/eel-alert-dialog.c
index 1527164a..9fd4d52e 100644
--- a/capplets/about-me/eel-alert-dialog.c
+++ b/capplets/about-me/eel-alert-dialog.c
@@ -171,7 +171,6 @@ eel_alert_dialog_init (EelAlertDialog *dialog)
gtk_label_set_use_markup (GTK_LABEL (dialog->details->primary_label), TRUE);
#if GTK_CHECK_VERSION (3, 16, 0)
gtk_label_set_xalign (GTK_LABEL (dialog->details->primary_label), 0.0);
- gtk_label_set_yalign (GTK_LABEL (dialog->details->primary_label), 0.5);
#else
gtk_misc_set_alignment (GTK_MISC (dialog->details->primary_label), 0.0, 0.5);
#endif
@@ -180,7 +179,6 @@ eel_alert_dialog_init (EelAlertDialog *dialog)
gtk_label_set_selectable (GTK_LABEL (dialog->details->secondary_label), TRUE);
#if GTK_CHECK_VERSION (3, 16, 0)
gtk_label_set_xalign (GTK_LABEL (dialog->details->secondary_label), 0.0);
- gtk_label_set_yalign (GTK_LABEL (dialog->details->secondary_label), 0.5);
#else
gtk_misc_set_alignment (GTK_MISC (dialog->details->secondary_label), 0.0, 0.5);
#endif
@@ -189,7 +187,6 @@ eel_alert_dialog_init (EelAlertDialog *dialog)
gtk_label_set_selectable (GTK_LABEL (dialog->details->details_label), TRUE);
#if GTK_CHECK_VERSION (3, 16, 0)
gtk_label_set_xalign (GTK_LABEL (dialog->details->details_label), 0.0);
- gtk_label_set_yalign (GTK_LABEL (dialog->details->details_label), 0.5);
#else
gtk_misc_set_alignment (GTK_MISC (dialog->details->details_label), 0.0, 0.5);
#endif