From ba112a3bd941eca2fa1da7252ff22fc90e20f0e3 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Tue, 20 Jun 2017 16:43:52 -0700 Subject: [PATCH] --image always goes on the FRONT of the equation list The image is intended to be background, so I want it to be rendered first, with everything else on top of it --- bin/feedgnuplot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/feedgnuplot b/bin/feedgnuplot index f976180..977580d 100755 --- a/bin/feedgnuplot +++ b/bin/feedgnuplot @@ -438,7 +438,7 @@ sub interpretCommandline die "Couldn't read image '$options{image}'"; } - push @{$options{equation}}, qq{"$options{image}" binary filetype=auto flipy with rgbimage}; + unshift @{$options{equation}}, qq{"$options{image}" binary filetype=auto flipy with rgbimage}; delete $options{image}; } }