From 040013a9a2b5612de59b7f54fdf09eb06778fc92 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Tue, 19 Dec 2017 13:53:58 +0100 Subject: [PATCH] gen-ballot.pl: Wider ballot papers --- gen-ballot.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen-ballot.pl b/gen-ballot.pl index 156fbf5..63410ab 100755 --- a/gen-ballot.pl +++ b/gen-ballot.pl @@ -13,7 +13,7 @@ use utf8; our @paper = (842, 598); # A4 landscape, 72dpi our @margin = (18, 18); -our @ballot = (147, 36); +our @ballot = (187, 36); our $filename = 'ballots.pdf'; our $fontface = 'Arial'; @@ -41,7 +41,7 @@ while (<>) { push @names, $_; } -$ballot[1] += @names * ($linespacing[1] + $fontsize[1] + 5); +$ballot[1] += @names * ($linespacing[1] + $fontsize[1] + 9); our $surface = Cairo::PdfSurface->create ($filename, @paper);