From 834b3988c7547f694127b4f41cd0d17df8760b73 Mon Sep 17 00:00:00 2001 From: OLFDB Date: Mon, 20 Sep 2021 06:52:17 +0200 Subject: patch:gui/gtk:Unique icon for POI dialog (#1154) --- navit/gui/gtk/gui_gtk_action.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/navit/gui/gtk/gui_gtk_action.c b/navit/gui/gtk/gui_gtk_action.c index 7b700c7d5..5563c88b0 100644 --- a/navit/gui/gtk/gui_gtk_action.c +++ b/navit/gui/gtk/gui_gtk_action.c @@ -212,7 +212,7 @@ static GtkActionEntry entries[] = { { "InfoAction", NULL, _n("_Info"), NULL, NULL, G_CALLBACK(info_action) }, #endif /*GTK_STOCK_INFO*/ { "DestinationAction", "flag_icon", _n("Set _destination"), "D", _n("Opens address search dialog"), G_CALLBACK(destination_action) }, - { "POIAction", "flag_icon", _n("_POI search"), "P", _n("Opens POI search dialog"), G_CALLBACK(poi_search_action) }, + { "POIAction", GTK_STOCK_INFO, _n("_POI search"), "P", _n("Opens POI search dialog"), G_CALLBACK(poi_search_action) }, { "RouteClearAction", NULL, _n("_Stop Navigation"), "S", NULL, G_CALLBACK(route_clear_action) }, { "Test", NULL, _n("Test"), NULL, NULL, G_CALLBACK(destination_action) }, { "QuitAction", GTK_STOCK_QUIT, _n("_Quit"), "Q",_n("Quit the application"), G_CALLBACK (quit_action) } @@ -330,7 +330,6 @@ static const char * flag_xpm[] = { }; - static struct { gchar *stockid; const char **icon_xpm; -- cgit v1.2.1