aboutsummaryrefslogtreecommitdiff
path: root/libdbusmenu-gtk/genericmenuitem.c
diff options
context:
space:
mode:
authorEvgeni Golov <evgeni@debian.org>2010-07-01 11:29:13 +0200
committerEvgeni Golov <evgeni@debian.org>2010-07-01 11:29:13 +0200
commit983a91c50de70a528edafa6fc05dfa9ffcc13b98 (patch)
tree8da346cb82d9cb9bdf8b6c3500f88839c3c215a9 /libdbusmenu-gtk/genericmenuitem.c
parent5259846f36df1eb4703c56cae6a08a4bd0b4ed15 (diff)
parent6830905830ac78271515c586442a090cf7a0e3ff (diff)
downloadlibdbusmenu-983a91c50de70a528edafa6fc05dfa9ffcc13b98.tar.gz
libdbusmenu-983a91c50de70a528edafa6fc05dfa9ffcc13b98.tar.bz2
libdbusmenu-983a91c50de70a528edafa6fc05dfa9ffcc13b98.zip
Merge Ubuntu.
Preserve Maintainer and Vcs-* fields. From Ubuntu: * New upstream release. * Adding support for menu shortcuts (LP: #591293) * Fixing distcheck of documentation builds * Autogen.sh fix for adding custom prefix (LP: #595565) * Fixing children property name to match spec (LP: #597321) * Merging in Debian branch * debian/control: Switching branch on this branch to be the dbusmenu-team. * debian/rules: Updating shlibs to 0.3.3 for shortcut API additions
Diffstat (limited to 'libdbusmenu-gtk/genericmenuitem.c')
-rw-r--r--libdbusmenu-gtk/genericmenuitem.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libdbusmenu-gtk/genericmenuitem.c b/libdbusmenu-gtk/genericmenuitem.c
index 8f40d93..30b072f 100644
--- a/libdbusmenu-gtk/genericmenuitem.c
+++ b/libdbusmenu-gtk/genericmenuitem.c
@@ -158,6 +158,8 @@ get_hpadding (GtkWidget * widget)
static void
set_label (GtkMenuItem * menu_item, const gchar * label)
{
+ if (label == NULL) return;
+
GtkWidget * child = gtk_bin_get_child(GTK_BIN(menu_item));
GtkLabel * labelw = NULL;
gboolean suppress_update = FALSE;
@@ -191,9 +193,10 @@ set_label (GtkMenuItem * menu_item, const gchar * label)
update the one that we already have. */
if (labelw == NULL) {
/* Build it */
- labelw = GTK_LABEL(gtk_label_new(label));
+ labelw = GTK_LABEL(gtk_accel_label_new(label));
gtk_label_set_use_underline(GTK_LABEL(labelw), TRUE);
gtk_misc_set_alignment(GTK_MISC(labelw), 0.0, 0.5);
+ gtk_accel_label_set_accel_widget(GTK_ACCEL_LABEL(labelw), GTK_WIDGET(menu_item));
gtk_widget_show(GTK_WIDGET(labelw));
/* Check to see if it needs to be in the bin for this