summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOLFDB <olf@eisenzelt.de>2021-09-20 06:52:17 +0200
committerGitHub <noreply@github.com>2021-09-20 06:52:17 +0200
commit834b3988c7547f694127b4f41cd0d17df8760b73 (patch)
treedf08887207befbd2b47ec100245c3d72d1c2bddc
parent0ed1660858a6b3055077f3b0d245c0316beb621c (diff)
downloadnavit-834b3988c7547f694127b4f41cd0d17df8760b73.tar.gz
patch:gui/gtk:Unique icon for POI dialog (#1154)
-rw-r--r--navit/gui/gtk/gui_gtk_action.c3
1 files changed, 1 insertions, 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"), "<control>D", _n("Opens address search dialog"), G_CALLBACK(destination_action) },
- { "POIAction", "flag_icon", _n("_POI search"), "<control>P", _n("Opens POI search dialog"), G_CALLBACK(poi_search_action) },
+ { "POIAction", GTK_STOCK_INFO, _n("_POI search"), "<control>P", _n("Opens POI search dialog"), G_CALLBACK(poi_search_action) },
{ "RouteClearAction", NULL, _n("_Stop Navigation"), "<control>S", NULL, G_CALLBACK(route_clear_action) },
{ "Test", NULL, _n("Test"), NULL, NULL, G_CALLBACK(destination_action) },
{ "QuitAction", GTK_STOCK_QUIT, _n("_Quit"), "<control>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;