[maemo-commits] [maemo-commits] r14055 - in projects/haf/trunk/hildon-1: . src
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Tue Sep 25 11:31:57 EEST 2007
- Previous message: [maemo-commits] r14054 - projects/haf/trunk/dosfstools/debian/patches
- Next message: [maemo-commits] r14056 - projects/haf/trunk/gtk+/debian
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: xan Date: 2007-09-25 11:31:56 +0300 (Tue, 25 Sep 2007) New Revision: 14055 Modified: projects/haf/trunk/hildon-1/ChangeLog projects/haf/trunk/hildon-1/src/hildon-bread-crumb-trail.c Log: 2007-09-25 Xan Lopez <xan.lopez at nokia.com> * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_text) (hildon_bread_crumb_trail_push_icon): Do not show the separator for the toplevel item. Fixes: NB#62031 Modified: projects/haf/trunk/hildon-1/ChangeLog =================================================================== --- projects/haf/trunk/hildon-1/ChangeLog 2007-09-25 08:24:33 UTC (rev 14054) +++ projects/haf/trunk/hildon-1/ChangeLog 2007-09-25 08:31:56 UTC (rev 14055) @@ -1,3 +1,9 @@ +2007-09-25 Xan Lopez <xan.lopez at nokia.com> + + * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_text) + (hildon_bread_crumb_trail_push_icon): Do not show the separator for the + toplevel item. Fixes: NB#62031 + 2007-09-24 Xan Lopez <xan.lopez at nokia.com> * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_icon): Modified: projects/haf/trunk/hildon-1/src/hildon-bread-crumb-trail.c =================================================================== --- projects/haf/trunk/hildon-1/src/hildon-bread-crumb-trail.c 2007-09-25 08:24:33 UTC (rev 14054) +++ projects/haf/trunk/hildon-1/src/hildon-bread-crumb-trail.c 2007-09-25 08:31:56 UTC (rev 14055) @@ -656,6 +656,10 @@ g_return_if_fail (text != NULL); widget = _hildon_bread_crumb_widget_new_with_text (text); + if (bct->priv->item_list == NULL) + { + g_object_set (G_OBJECT (widget), "show-separator", FALSE, NULL); + } attach_bread_crumb (bct, widget, id, destroy); } @@ -687,6 +691,10 @@ g_return_if_fail (GTK_IS_WIDGET (icon)); widget = _hildon_bread_crumb_widget_new_with_icon (icon, text); + if (bct->priv->item_list == NULL) + { + g_object_set (G_OBJECT (widget), "show-separator", FALSE, NULL); + } attach_bread_crumb (bct, widget, id, destroy); }
- Previous message: [maemo-commits] r14054 - projects/haf/trunk/dosfstools/debian/patches
- Next message: [maemo-commits] r14056 - projects/haf/trunk/gtk+/debian
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]