changeset 11678:c8b80a1af968 release-3-0-x

set axes layer property to "top"
author John W. Eaton <jwe@octave.org>
date Fri, 07 Mar 2008 06:25:19 -0500
parents c300c30e2ac6
children f95adf778670
files scripts/ChangeLog scripts/plot/contourf.m
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Thu Mar 06 14:27:45 2008 -0500
+++ b/scripts/ChangeLog	Fri Mar 07 06:25:19 2008 -0500
@@ -1,3 +1,7 @@
+2008-03-07  John W. Eaton  <jwe@octave.org>
+
+	* plot/contourf.m: Set axes layer property to "top".
+
 2008-03-06  John W. Eaton  <jwe@octave.org>
 
 	* plot/hist.m: Avoid temporaries.
--- a/scripts/plot/contourf.m	Thu Mar 06 14:27:45 2008 -0500
+++ b/scripts/plot/contourf.m	Fri Mar 07 06:25:19 2008 -0500
@@ -180,6 +180,8 @@
     set (gca(), "clim", [min(lev), max(lev)]);
   endif
 
+  set (gca (), "layer", "top");
+
   if (nargout > 0)
     varargout{2} = h;
     varargout{1} = c;