# HG changeset patch # User Rik # Date 1380844067 25200 # Node ID 6363302926854e831883c6d0d1c10b60f38128bb # Parent e48a22b94727e8c97600b67daccc784a55666dd4 pcolor.m: Only turn on axis box when ishold is false. * scripts/plot/pcolor.m: Only turn on axis box when ishold is false. diff -r e48a22b94727 -r 636330292685 scripts/plot/pcolor.m --- a/scripts/plot/pcolor.m Thu Oct 03 16:42:42 2013 -0700 +++ b/scripts/plot/pcolor.m Thu Oct 03 16:47:47 2013 -0700 @@ -83,9 +83,8 @@ htmp = surface (x, y, z, c); set (htmp, "facecolor", "flat"); - set (hax, "box", "on"); if (! ishold ()) - set (hax, "view", [0, 90]); + set (hax, "view", [0, 90], "box", "on"); endif unwind_protect_cleanup