[maemo-commits] [maemo-commits] r13487 - in projects/haf/trunk/hildon-desktop: . src
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Thu Aug 30 15:32:56 EEST 2007
- Previous message: [maemo-commits] r13486 - in projects/haf/trunk/libhildonmime: . data debian
- Next message: [maemo-commits] r13488 - in projects/haf/trunk/libhildonmime: . data
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: lucasr Date: 2007-08-30 15:32:54 +0300 (Thu, 30 Aug 2007) New Revision: 13487 Modified: projects/haf/trunk/hildon-desktop/ChangeLog projects/haf/trunk/hildon-desktop/src/hd-applications-menu.c Log: 2007-08-30 Lucas Rocha <lucas.rocha at nokia.com> * src/hd-applications-menu.c (hd_applications_menu_get_items): set the ellipsize behavior for menu items. Fixes NB#65999. Modified: projects/haf/trunk/hildon-desktop/ChangeLog =================================================================== --- projects/haf/trunk/hildon-desktop/ChangeLog 2007-08-30 12:32:03 UTC (rev 13486) +++ projects/haf/trunk/hildon-desktop/ChangeLog 2007-08-30 12:32:54 UTC (rev 13487) @@ -1,3 +1,8 @@ +2007-08-30 Lucas Rocha <lucas.rocha at nokia.com> + + * src/hd-applications-menu.c (hd_applications_menu_get_items): set the + ellipsize behavior for menu items. Fixes NB#65999. + 2007-08-30 Johan Bilien <johan.bilien at nokia.com> * src/hd-select-plugins-dialog.c: do not free the Modified: projects/haf/trunk/hildon-desktop/src/hd-applications-menu.c =================================================================== --- projects/haf/trunk/hildon-desktop/src/hd-applications-menu.c 2007-08-30 12:32:03 UTC (rev 13486) +++ projects/haf/trunk/hildon-desktop/src/hd-applications-menu.c 2007-08-30 12:32:54 UTC (rev 13487) @@ -639,7 +639,8 @@ hbox = gtk_hbox_new (FALSE, 0); label = gtk_label_new (item_name); - + + gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_box_pack_start (GTK_BOX (hbox), @@ -743,6 +744,7 @@ label = gtk_label_new ((item_text_domain && *item_text_domain) ? dgettext(item_text_domain, item_name) : _(item_name)), + gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_box_pack_start (GTK_BOX (hbox),
- Previous message: [maemo-commits] r13486 - in projects/haf/trunk/libhildonmime: . data debian
- Next message: [maemo-commits] r13488 - in projects/haf/trunk/libhildonmime: . data
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]