From: Rob Norris Date: Sat, 9 Oct 2010 09:07:34 +0000 (+0100) Subject: Improve the associated icon, remove the scissor effort and use something to try to... X-Git-Url: https://git.street.me.uk/andy/viking.git/commitdiff_plain/c3092f0f56a7d416da8c506ae6d222d5d67e5379?hp=0db79fc537820be2e121aee9c264060fa2d4d0b8 Improve the associated icon, remove the scissor effort and use something to try to suggest the idea of a list of directions to get somewhere for 'Route Finding'. --- diff --git a/src/icons/Makefile.am b/src/icons/Makefile.am index f775d95b..aa5b531c 100644 --- a/src/icons/Makefile.am +++ b/src/icons/Makefile.am @@ -216,6 +216,7 @@ ICONS = \ showpic_18.png \ zoom_18.png \ iscissors_18.png \ + route_finder_18.png \ select_18.png \ thumbnails.png \ vikaggregatelayer.png \ @@ -234,7 +235,7 @@ CURSORS = \ cursor_ruler.png \ cursor_addwp.png \ cursor_edwp.png \ - cursor_iscissors.png \ + cursor_route_finder.png \ cursor_showpic.png \ cursor_demdl.png \ cursor_geomove.png \ diff --git a/src/icons/cursor_iscissors.png b/src/icons/cursor_iscissors.png deleted file mode 100644 index 2f5b072a..00000000 Binary files a/src/icons/cursor_iscissors.png and /dev/null differ diff --git a/src/icons/cursor_route_finder.png b/src/icons/cursor_route_finder.png new file mode 100644 index 00000000..a808be29 Binary files /dev/null and b/src/icons/cursor_route_finder.png differ diff --git a/src/icons/iscissors_18.png b/src/icons/iscissors_18.png deleted file mode 100644 index 9b97ddbd..00000000 Binary files a/src/icons/iscissors_18.png and /dev/null differ diff --git a/src/icons/route_finder_18.png b/src/icons/route_finder_18.png new file mode 100644 index 00000000..29144793 Binary files /dev/null and b/src/icons/route_finder_18.png differ diff --git a/src/viktrwlayer.c b/src/viktrwlayer.c index 17783606..202a8266 100644 --- a/src/viktrwlayer.c +++ b/src/viktrwlayer.c @@ -358,7 +358,7 @@ static VikToolInterface trw_layer_tools[] = { (VikToolMouseFunc) tool_show_picture_click, NULL, NULL, (VikToolKeyFunc) NULL, GDK_CURSOR_IS_PIXMAP, &cursor_showpic_pixbuf }, { N_("Route Finder"), (VikToolConstructorFunc) tool_magic_scissors_create, NULL, NULL, NULL, - (VikToolMouseFunc) tool_magic_scissors_click, NULL, NULL, (VikToolKeyFunc) NULL, GDK_CURSOR_IS_PIXMAP, &cursor_iscissors_pixbuf }, + (VikToolMouseFunc) tool_magic_scissors_click, NULL, NULL, (VikToolKeyFunc) NULL, GDK_CURSOR_IS_PIXMAP, &cursor_route_finder_pixbuf }, }; enum { TOOL_CREATE_WAYPOINT=0, TOOL_CREATE_TRACK, TOOL_BEGIN_TRACK, TOOL_EDIT_WAYPOINT, TOOL_EDIT_TRACKPOINT, TOOL_SHOW_PICTURE, NUM_TOOLS }; diff --git a/src/vikwindow.c b/src/vikwindow.c index 678e0a04..9e5842bd 100644 --- a/src/vikwindow.c +++ b/src/vikwindow.c @@ -2656,7 +2656,7 @@ static struct { gchar *stock_id; } stock_icons[] = { { &begintr_18_pixbuf, "Begin Track" }, - { &iscissors_18_pixbuf, "Route Finder" }, + { &route_finder_18_pixbuf, "Route Finder" }, { &mover_22_pixbuf, "vik-icon-pan" }, { &demdl_18_pixbuf, "DEM Download/Import" }, { &showpic_18_pixbuf, "Show Picture" },