From 73bc9f672f869f4685076ac6cafe76988cadbbf2 Mon Sep 17 00:00:00 2001 From: monsta Date: Thu, 4 Feb 2016 13:59:26 +0300 Subject: [GTK+3] don't set x/y align to 0.5 - it's the default value anyway --- capplets/about-me/eel-alert-dialog.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'capplets/about-me') 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 -- cgit v1.2.1