From ea992a3b2d679159883cd77dc9cedf0b6d56a88a Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Mon, 4 Jun 2018 08:07:43 +1000 Subject: [PATCH] tools: Made pil images larger. - Terminals often let you shrink the font size quickly to make the whole image visible. --- vigil/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vigil/tools.py b/vigil/tools.py index e1bbcc3..cbb089e 100644 --- a/vigil/tools.py +++ b/vigil/tools.py @@ -549,7 +549,7 @@ def _pil_pixels(pil_image): for row_index in range(pil_image.height)] -MAX_IMAGE_SIZE = 80 +MAX_IMAGE_SIZE = 200 def _resize_image(image, new_width):