--- trunk/src/misc.c 2009/11/25 13:52:17 212 +++ trunk/src/misc.c 2009/11/25 20:19:32 213 @@ -628,8 +628,8 @@ GtkWidget *lat_entry, GtkWidget *lon_entry) { GtkWidget *menu = gtk_menu_new(); - menu_add(menu, appdata, NULL, _("Current position (GPS)"), - cb_gps, lon_entry, lat_entry); + menu_add(menu, appdata, icon_get_widget(ICON_POS, 7), + _("Current position (GPS)"), cb_gps, lon_entry, lat_entry); menu_add(menu, appdata, NULL, _("Geomath projection"), cb_geomath, lon_entry, lat_entry); #ifdef ENABLE_OSM_GPS_MAP @@ -650,7 +650,7 @@ while(wpt) { GtkWidget *icon = NULL; if(wpt->sym != WPT_SYM_UNKNOWN) - icon = icon_get_widget(ICON_WPT, wpt->sym); + icon = icon_get_widget(ICON_POS, wpt->sym); menu_add(menu, appdata, icon, wpt->id, cb_cache, lon_entry, lat_entry); @@ -692,8 +692,7 @@ (HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH)); #endif - gtk_button_set_image(GTK_BUTTON(button), - gtk_image_new_from_stock(GTK_STOCK_ADD, GTK_ICON_SIZE_BUTTON)); + gtk_button_set_image(GTK_BUTTON(button), icon_get_widget(ICON_POS, 6)); gtk_widget_set_tooltip_text(button, _("Preset coordinates"));