Moved GUI back to fullscreen

This commit is contained in:
Balthasar Reuter
2015-06-18 23:52:43 +02:00
parent 4db70dcc38
commit 80bb1bb301
2 changed files with 2 additions and 2 deletions

2
gui.py
View File

@@ -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()

View File

@@ -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
#####################