# HG changeset patch # User David Bateman # Date 1272135392 -7200 # Node ID f5a652a101b0dcde8632ea0bc1a52534870226e5 # Parent b834afa451a224b69aa12cc1602116f178b03592 Correct fill of diamond markers for gnuplot backend diff -r b834afa451a2 -r f5a652a101b0 scripts/ChangeLog --- 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 + + * plot/__go_draw_axes__.m: Correct fill of diamond markers + 2010-04-24 Ben Abbott * plot/__go_draw_axes__.m: Consistent placement of axes for ps vs diff -r b834afa451a2 -r f5a652a101b0 scripts/plot/__go_draw_axes__.m --- 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";