diff options
author | Ted Gould <ted@gould.cx> | 2010-06-14 15:23:05 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-06-14 15:23:05 -0500 |
commit | 2525166d72f421e045b21910aa7df2523135d1c9 (patch) | |
tree | 10dc9dd0b380da9ca72c2951508a539c846b29ee /libdbusmenu-gtk | |
parent | 53e80ec1652a9519a7e546d7055527eb7b5ad2aa (diff) | |
download | libdbusmenu-2525166d72f421e045b21910aa7df2523135d1c9.tar.gz libdbusmenu-2525166d72f421e045b21910aa7df2523135d1c9.tar.bz2 libdbusmenu-2525166d72f421e045b21910aa7df2523135d1c9.zip |
Switching to an accel label
Diffstat (limited to 'libdbusmenu-gtk')
-rw-r--r-- | libdbusmenu-gtk/genericmenuitem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdbusmenu-gtk/genericmenuitem.c b/libdbusmenu-gtk/genericmenuitem.c index 8f40d93..1000c68 100644 --- a/libdbusmenu-gtk/genericmenuitem.c +++ b/libdbusmenu-gtk/genericmenuitem.c @@ -191,7 +191,7 @@ 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_widget_show(GTK_WIDGET(labelw)); |