changeset 10159:9f0e7bfe63e5

__go_draw_figure__.m: Reverse order axes are drawn.
author Ben Abbott <bpabbott@mac.com>
date Wed, 20 Jan 2010 19:45:07 -0500
parents 4c0cdbe0acca
children cd96d29c5efa
files scripts/ChangeLog scripts/plot/__go_draw_figure__.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Wed Jan 20 19:04:35 2010 -0500
+++ b/scripts/ChangeLog	Wed Jan 20 19:45:07 2010 -0500
@@ -1,3 +1,7 @@
+2010-01-20  Ben Abbott <bpabbot@mac.com>
+
+	* /plot/__go_draw_figure__.m: Reverse order axes are drawn.
+
 2010-01-20  David Bateman  <dbateman@free.fr>
 
 	* plot/private/__contour__.m: Set default linestyle if pltopt returns
--- a/scripts/plot/__go_draw_figure__.m	Wed Jan 20 19:04:35 2010 -0500
+++ b/scripts/plot/__go_draw_figure__.m	Wed Jan 20 19:45:07 2010 -0500
@@ -76,7 +76,7 @@
         else
           bg_is_set = false;
         endif
-	for i = 1:nkids
+	for i = nkids:-1:1
 	  type = get (kids(i), "type");
 	  switch (type)
 	    case "axes"