Index: gnome-panel/menu.c =================================================================== RCS file: /cvs/gnome/gnome-panel/gnome-panel/menu.c,v retrieving revision 1.733 diff -u -p -r1.733 menu.c --- gnome-panel/menu.c 10 Jan 2005 16:41:00 -0000 1.733 +++ gnome-panel/menu.c 20 Jan 2005 00:18:28 -0000 @@ -1576,14 +1576,15 @@ panel_load_menu_image_deferred (GtkWidge { IconToLoad *icon; GtkWidget *image; - int icon_height = PANEL_DEFAULT_MENU_ICON_SIZE; + int icon_height = PANEL_DEFAULT_MENU_ICON_SIZE, + icon_width = PANEL_DEFAULT_MENU_ICON_SIZE; icon = g_new (IconToLoad, 1); - gtk_icon_size_lookup (icon_size, NULL, &icon_height); + gtk_icon_size_lookup (icon_size, &icon_width, &icon_height); image = gtk_image_new (); - image->requisition.width = icon_height; + image->requisition.width = icon_width; image->requisition.height = icon_height; /* this takes over the floating ref */