From b5e1675527af1b00719b12cf0c7b931b4457d3fb Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Tue, 14 Jul 2009 22:21:39 +0000 Subject: [PATCH] Using a stock icon for the "New" submenu in the desktop popup --- src/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/desktop.c b/src/desktop.c index b6f1d01..b51ebc2 100644 --- a/src/desktop.c +++ b/src/desktop.c @@ -764,7 +764,7 @@ static GdkFilterReturn _event_button_press(XButtonEvent * xbev, return GDK_FILTER_CONTINUE; } desktop->menu = gtk_menu_new(); - menuitem = gtk_menu_item_new_with_label("New"); + menuitem = gtk_image_menu_item_new_from_stock(GTK_STOCK_NEW, NULL); submenu = gtk_menu_new(); gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), submenu); gtk_menu_shell_append(GTK_MENU_SHELL(desktop->menu), menuitem);