diff --git a/gui.py b/gui.py index 43b189b..218f650 100644 --- a/gui.py +++ b/gui.py @@ -137,7 +137,7 @@ class GUI_PyGame: # Store screen and size self.size = size - self.screen = pygame.display.set_mode(size) #, pygame.FULLSCREEN) + self.screen = pygame.display.set_mode(size, pygame.FULLSCREEN) # Clear screen self.clear() diff --git a/photobooth.py b/photobooth.py index d183d2e..122ac69 100755 --- a/photobooth.py +++ b/photobooth.py @@ -10,7 +10,7 @@ from time import sleep, clock from PIL import Image from gui import GUI_PyGame as GuiModule -from camera import CameraException, Camera_gPhoto as CameraModule +from camera import CameraException, Camera_cv as CameraModule from events import Rpi_GPIO as GPIO #####################