]> git.sur5r.net Git - pdfstitch/commitdiff
Move initialisation of $defaultcrop to fix #5 v0.6
authorJakob Haufe <sur5r@sur5r.net>
Tue, 24 Oct 2017 20:34:20 +0000 (22:34 +0200)
committerJakob Haufe <sur5r@sur5r.net>
Tue, 24 Oct 2017 20:34:20 +0000 (22:34 +0200)
pdfstitch

index 9a6cf9b72216d35bcad9589cd334768658682959..2fec2272ea3135b2baa00c97486596e9b832d699 100755 (executable)
--- a/pdfstitch
+++ b/pdfstitch
@@ -16,7 +16,7 @@ my $genmeta = '';
 my $preview = '';
 my $crop = '';
 my $stitch = '';
-my $defaultcrop = '0.9';
+my $defaultcrop = '';
 
 Getopt::Long::Configure("bundling");
 
@@ -96,6 +96,7 @@ if(not ($genmeta or $preview or $crop or $stitch))
 if($genmeta)
 {
     print "Generating meta file for " . basename($infile) . ".\n";
+    $defaultcrop = '0.9' unless $defaultcrop;
     my $outfile = basename($infile) . ".stitch";
 
     die "$outfile exists, aborting!\n" if -e $outfile;