# HG changeset patch # User Rik # Date 1471383871 25200 # Node ID c563396c5bf1660394c272b9954d832bd11d55f2 # Parent 1ddb53b6ad303d840e03b4b84b3562706b18a3e3 annotation.m: Fix %!demo #3 to work with dump_plots.m annotation.m: Don't try and place headstyle in double quotes. diff -r 1ddb53b6ad30 -r c563396c5bf1 scripts/plot/appearance/annotation.m --- a/scripts/plot/appearance/annotation.m Tue Aug 16 23:28:09 2016 +0200 +++ b/scripts/plot/appearance/annotation.m Tue Aug 16 14:44:31 2016 -0700 @@ -1356,12 +1356,12 @@ %! jj = 1; %! for ii = 1:nrows %! annotation ("textarrow", [0.3 0.5], [y y], ... -%! "string", ['"' styles{jj} '"'], "fontsize", 15, ... +%! "string", styles{jj}, "fontsize", 15, ... %! "headstyle", styles{jj}, "textcolor", "b"); %! jj = jj + 1; %! if (jj <= ns) %! annotation ("textarrow", [0.7 0.5], [y y], ... -%! "string", ['"' styles{jj} '"'], "fontsize", 15, ... +%! "string", styles{jj}, "fontsize", 15, ... %! "headstyle", styles{jj}, "textcolor", "b"); %! jj = jj + 1; %! endif