[gtk+] GtkAssistant: Use GtkLabel:xalign
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] GtkAssistant: Use GtkLabel:xalign
- Date: Tue, 30 Sep 2014 03:57:47 +0000 (UTC)
commit 811c4c699fefc0110907d2cf2d905bc0f1a0b772
Author: Matthias Clasen <mclasen redhat com>
Date: Mon Sep 29 23:44:46 2014 -0400
GtkAssistant: Use GtkLabel:xalign
gtk/gtkassistant.c | 11 ++---------
1 files changed, 2 insertions(+), 9 deletions(-)
---
diff --git a/gtk/gtkassistant.c b/gtk/gtkassistant.c
index 444890f..a6ccc97 100644
--- a/gtk/gtkassistant.c
+++ b/gtk/gtkassistant.c
@@ -1758,15 +1758,8 @@ gtk_assistant_insert_page (GtkAssistant *assistant,
page_info->current_title = gtk_label_new (NULL);
gtk_widget_set_no_show_all (page_info->current_title, TRUE);
-G_GNUC_BEGIN_IGNORE_DEPRECATIONS
- /* Note: we need to use misc alignment here as long as GtkLabel
- * pays attention to it. GtkWiget::halign is ineffective, since
- * all the labels are getting the same size anyway, due to the
- * size group.
- */
- gtk_misc_set_alignment (GTK_MISC (page_info->regular_title), 0, 0.5);
- gtk_misc_set_alignment (GTK_MISC (page_info->current_title), 0, 0.5);
-G_GNUC_END_IGNORE_DEPRECATIONS
+ gtk_label_set_xalign (page_info->regular_title, 0.0);
+ gtk_label_set_xalign (page_info->current_title, 0.0);
gtk_widget_show (page_info->regular_title);
gtk_widget_hide (page_info->current_title);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]