From 91134938a735876693a4d09c453a057ece5d2772 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Mon, 3 Jan 2011 16:16:27 -0800 Subject: [PATCH] gnuplot wants the title to be given before the extra curve options, so I do that --- feedGnuplot.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feedGnuplot.pl b/feedGnuplot.pl index 42d2d6a..ae64cf2 100755 --- a/feedGnuplot.pl +++ b/feedGnuplot.pl @@ -587,7 +587,7 @@ sub updateCurveOptions $title = $id if $options{autolegend}; my $titleoption = defined $title ? "title \"$title\"" : "notitle"; - $curveoptions->{options} = "$curveoptions->{extraoptions} $titleoption"; + $curveoptions->{options} = "$titleoption $curveoptions->{extraoptions}"; } sub getCurve