From ecdc05ed3bb0d46625c9cf8531d0275887ae5e09 Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Sun, 31 May 2015 23:32:29 +0200 Subject: [PATCH] Text centered --- photobooth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/photobooth.py b/photobooth.py index 5556f47..1256ca0 100755 --- a/photobooth.py +++ b/photobooth.py @@ -238,7 +238,7 @@ class GUI_PyGame: # Show idle-picture and message if filename != None: self.show_picture(filename) - self.show_message("Hit the button!") + self.show_message("\n\nHit the button!") # Render everything self.apply() # Wait for event @@ -324,7 +324,7 @@ def take_picture(): # Countdown for i in range(3): display.clear() - display.show_message(str(3 - i)) + display.show_message("\n\n" + str(3 - i)) display.apply() sleep(1)