changeset 640:e8daeb766939 pyntnclick

Fix missing case
author Neil Muller <neil@dip.sun.ac.za>
date Sun, 12 Feb 2012 01:34:39 +0200
parents fdc63049b08c
children dae56fc7b902
files pyntnclick/state.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pyntnclick/state.py	Sun Feb 12 01:31:14 2012 +0200
+++ b/pyntnclick/state.py	Sun Feb 12 01:34:39 2012 +0200
@@ -315,7 +315,7 @@
                 self.game.current_thing.get_description())
         if text is None:
             return None
-        label = TextWidget((10, 10), text)
+        label = TextWidget((10, 10), self.gd, text)
         label.set_margin(5)
         label.border_width = 1
         label.border_color = (0, 0, 0)