From 422ff627e7fbaa8f012f6f07775433c209c45fe9 Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Wed, 4 Jul 2018 22:20:58 +0200 Subject: [PATCH] Disable PDF printer that was enabled for debugging purposes --- photobooth/gui/GuiPostprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photobooth/gui/GuiPostprocess.py b/photobooth/gui/GuiPostprocess.py index f3e44bd..e6409b2 100644 --- a/photobooth/gui/GuiPostprocess.py +++ b/photobooth/gui/GuiPostprocess.py @@ -46,7 +46,7 @@ class PrintPostprocess(GuiPostprocess): super().__init__(**kwargs) Printer = lookup_and_import(printer.modules, printer_module, 'printer') - self._printer = Printer(page_size, True) + self._printer = Printer(page_size) def get(self, picture):