# HG changeset patch # User Ben Abbott # Date 1241129974 14400 # Node ID 406ed43c0233eb7c4e520788d9a713ced3ed3eaa # Parent 11e0f0e8ff00226fbf33f1b196a8924bb85882a6 gnuplot_drawnow.m: For figure size/position treat 'wxt' as 'x11'. diff -r 11e0f0e8ff00 -r 406ed43c0233 scripts/ChangeLog --- a/scripts/ChangeLog Thu Apr 30 20:52:07 2009 +0200 +++ b/scripts/ChangeLog Thu Apr 30 18:19:34 2009 -0400 @@ -1,3 +1,7 @@ +2009-04-30 Ben Abbott + + * plot/gnuplot_drawnow.m: For figure position, treat 'wxt' as 'x11'. + 2009-04-30 Jaroslav Hajek * statistics/base/range.m: Fix behavior when dim is specified. diff -r 11e0f0e8ff00 -r 406ed43c0233 scripts/plot/gnuplot_drawnow.m --- a/scripts/plot/gnuplot_drawnow.m Thu Apr 30 20:52:07 2009 +0200 +++ b/scripts/plot/gnuplot_drawnow.m Thu Apr 30 18:19:34 2009 -0400 @@ -187,10 +187,11 @@ if (all (gnuplot_size > 0)) ## Set terminal size. terminals_with_size = {"emf", "gif", "jpeg", "latex", "pbm", ... - "pdf", "png", "postscript", "svg", "wxt", ... + "pdf", "png", "postscript", "svg", ... "epslatex", "pstex", "pslatex"}; if (__gnuplot_has_feature__ ("x11_figure_position")) terminals_with_size{end+1} = "x11"; + terminals_with_size{end+1} = "wxt"; endif if (any (strncmpi (term, terminals_with_size, 3))) if (term_units_are_pixels (term))