diff gamelib/gamescreen.py @ 35:ebc76bc0c067

First item!
author Simon Cross <hodgestar+bzr@gmail.com>
date Sun, 22 Aug 2010 20:05:37 +0200
parents e5c043aeed65
children 31a431f795e1
line wrap: on
line diff
--- a/gamelib/gamescreen.py	Sun Aug 22 19:59:42 2010 +0200
+++ b/gamelib/gamescreen.py	Sun Aug 22 20:05:37 2010 +0200
@@ -6,6 +6,7 @@
 
 from pygame.color import Color
 from pygame import Rect
+from pygame.locals import BLEND_ADD
 from albow.screen import Screen
 from albow.controls import Button, Label, Widget
 from albow.layout import Column
@@ -46,7 +47,7 @@
 class StateWidget(Widget):
 
     def __init__(self, state):
-        Widget.__init__(self, Rect(0, 0, 800, 600))
+        Widget.__init__(self, Rect(0, 0, 800, 550))
         self.state = state
 
     def draw(self, surface):