# HG changeset patch # User Rik # Date 1404445361 25200 # Node ID 24332f256940ade0531eed606353c233c816eff0 # Parent fee51895ffe1d4ef468b9a3b1e455b6fbc9890da Set default patch color to black rather than green for Matlab compatibility. * __patch__.m: Set default patch color to black rather than green for Matlab compatibility. diff -r fee51895ffe1 -r 24332f256940 scripts/plot/draw/private/__patch__.m --- a/scripts/plot/draw/private/__patch__.m Thu Jul 03 14:10:35 2014 -0700 +++ b/scripts/plot/draw/private/__patch__.m Thu Jul 03 20:42:41 2014 -0700 @@ -176,7 +176,7 @@ args{10} = []; else args{7} = "facecolor"; - args{8} = [0, 1, 0]; + args{8} = [0, 0, 0]; args{9} = "cdata"; args{10} = []; endif @@ -247,7 +247,7 @@ if (!isempty (fvc)) fc = "flat"; else - fc = [0, 1, 0]; + fc = [0, 0, 0]; endif args = {"facecolor", fc, args{:}}; endif @@ -317,7 +317,7 @@ if (!isempty (c)) fc = "flat"; else - fc = [0, 1, 0]; + fc = [0, 0, 0]; endif args = {"facecolor", fc, args{:}}; endif