From f615860793ef624269d888e88385647c73043938 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 11 Jun 2023 11:05:33 +0100 Subject: [PATCH] mason/.perl-lib/TrivGal.pm: Fix image flipping again, but properly. Brown paper bag time. --- mason/.perl-lib/TrivGal.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mason/.perl-lib/TrivGal.pm b/mason/.perl-lib/TrivGal.pm index 8d776c2..ea3b47a 100644 --- a/mason/.perl-lib/TrivGal.pm +++ b/mason/.perl-lib/TrivGal.pm @@ -237,7 +237,7 @@ package TrivGal::Image { if (defined $orient) { my ($rot, $flip) = @{$ORIENT{$orient}}; if ($rot) { $img->image_orientate($rot); } - if ($flip) { $img->flip_horizontal($flip); } + if ($flip) { $img->flip_horizontal(); } } } -- 2.11.0