changeset 10563:f5a652a101b0

Correct fill of diamond markers for gnuplot backend
author David Bateman <dbateman@free.fr>
date Sat, 24 Apr 2010 20:56:32 +0200
parents b834afa451a2
children c09910abd2b0
files scripts/ChangeLog scripts/plot/__go_draw_axes__.m
diffstat 2 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Sat Apr 24 20:12:08 2010 +0300
+++ b/scripts/ChangeLog	Sat Apr 24 20:56:32 2010 +0200
@@ -1,3 +1,7 @@
+2010-04-24  David Bateman  <dbateman@free.fr>
+
+	* plot/__go_draw_axes__.m: Correct fill of diamond markers
+
 2010-04-24  Ben Abbott <bpabbott@mac.com>
 
 	* plot/__go_draw_axes__.m: Consistent placement of axes for ps vs
--- a/scripts/plot/__go_draw_axes__.m	Sat Apr 24 20:12:08 2010 +0300
+++ b/scripts/plot/__go_draw_axes__.m	Sat Apr 24 20:56:32 2010 +0200
@@ -826,8 +826,8 @@
                      pt = "pt 4";
                      pt2 = "pt 5";
                    case {"diamond", "d"}
-                     pt = "pt 13";
-                     pt2 = "pt 14";
+                     pt = "pt 12";
+                     pt2 = "pt 13";
                    case "^"
                      pt = "pt 8";
                      pt2 = "pt 9";
@@ -1700,8 +1700,8 @@
         pt = "4";
         pt2 = "5";
       case {"diamond", "d"}
-        pt = "13";
-        pt2 = "14";
+        pt = "12";
+        pt2 = "13";
       case "^"
         pt = "8";
         pt2 = "9";