]> git.street.me.uk Git - andy/viking.git/commitdiff
Improve the associated icon, remove the scissor effort and use something to try to...
authorRob Norris <rw_norris@hotmail.com>
Sat, 9 Oct 2010 09:07:34 +0000 (10:07 +0100)
committerRob Norris <rw_norris@hotmail.com>
Sat, 25 Jun 2011 11:43:16 +0000 (12:43 +0100)
src/icons/Makefile.am
src/icons/cursor_iscissors.png [deleted file]
src/icons/cursor_route_finder.png [new file with mode: 0644]
src/icons/iscissors_18.png [deleted file]
src/icons/route_finder_18.png [new file with mode: 0644]
src/viktrwlayer.c
src/vikwindow.c

index f775d95be412b74ff4a7981b1830f7e9edabc40d..aa5b531c4b7566b685d93ce433b24c938c63982b 100644 (file)
@@ -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 (file)
index 2f5b072..0000000
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 (file)
index 0000000..a808be2
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 (file)
index 9b97ddb..0000000
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 (file)
index 0000000..2914479
Binary files /dev/null and b/src/icons/route_finder_18.png differ
index 1778360641233c24c9affd1b0aa86eaa8cc2a988..202a8266d22f441c214cea43aac49b3ff1239464 100644 (file)
@@ -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 };
 
index 678e0a04d04067609189d6985c397f2562a064e2..9e5842bd816fd682098601bb7377e27c5d4d1a69 100644 (file)
@@ -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"      },