# HG changeset patch # User John W. Eaton # Date 1204889050 18000 # Node ID 8bf1bcb0ad8fb31b97f0ce2a9d5f5d0a94e4e55b # Parent 369b16e7f04b8b69b9193fbedce1d2516f1c7ba8 set axes layer property to "top" diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,5 +1,7 @@ 2008-03-07 John W. Eaton + * plot/contourf.m: Set axes layer property to "top". + * plot/__go_draw_axes__.m: Handle tickdir property. 2008-03-06 John W. Eaton diff --git a/scripts/plot/contourf.m b/scripts/plot/contourf.m --- a/scripts/plot/contourf.m +++ b/scripts/plot/contourf.m @@ -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;