# HG changeset patch # User Rik # Date 1345668389 25200 # Node ID ae6b7ee0a73394b212d5da9b7bdb1bd90026ba7f # Parent 336f424066714e4d4a5a4d7f6364d137106f0219 print.m: Correct typo preventing fontsize to be set (bug #37163) * print.m: Change variable name to from opt to opts. diff -r 336f42406671 -r ae6b7ee0a733 scripts/plot/print.m --- a/scripts/plot/print.m Wed Aug 22 16:30:55 2012 -0400 +++ b/scripts/plot/print.m Wed Aug 22 13:46:29 2012 -0700 @@ -401,7 +401,7 @@ else fontsize = opts.fontsize; endif - if (! isempty (opts.scalefontsize) && ! opt.scalefontsize != 1) + if (! isempty (opts.scalefontsize) && ! opts.scalefontsize != 1) ## This is done to work around the bbox being whole numbers. fontsize = fontsize * opts.scalefontsize; endif