Label in HildonNote must be left aligned, not centered
authorAlberto Garcia <agarcia@igalia.com>
Tue, 28 Apr 2009 14:29:04 +0000 (16:29 +0200)
committerAlberto Garcia <agarcia@igalia.com>
Tue, 28 Apr 2009 14:29:04 +0000 (16:29 +0200)
* src/hildon-note.c (hildon_note_init):
Label in HildonNote must be left aligned, not centered. This
reverts the last commit in HildonNote.

Fixes: NB#112933 (text is not left aligned in confirmation dialog
is connectivity dialog)

ChangeLog
src/hildon-note.c

index f6a5ce7..f6ac15b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-04-28  Alberto Garcia  <agarcia@igalia.com>
+
+       * src/hildon-note.c (hildon_note_init):
+       Label in HildonNote must be left aligned, not centered. This
+       reverts the last commit in HildonNote.
+
+       Fixes: NB#112933 (text is not left aligned in confirmation dialog
+       is connectivity dialog)
+
 2009-04-27  Alberto Garcia  <agarcia@igalia.com>
 
        * src/hildon-gtk.c:
index 972e64e..8f4ca91 100644 (file)
@@ -408,7 +408,7 @@ hildon_note_init                                (HildonNote *dialog)
 
     priv->label = gtk_label_new (NULL);
     gtk_label_set_line_wrap (GTK_LABEL (priv->label), TRUE);
-    gtk_label_set_justify (GTK_LABEL (priv->label), GTK_JUSTIFY_CENTER);
+    gtk_label_set_justify (GTK_LABEL (priv->label), GTK_JUSTIFY_LEFT);
 
     priv->event_box = gtk_event_box_new ();
     priv->icon = NULL;