diff gamelib/gamegui.py @ 93:f0bf77787d1e

Display long ddescription on mission screen
author Neil Muller <drnlmuller@gmail.com>
date Wed, 09 May 2012 21:16:53 +0200
parents 0823e2529c23
children 069a2d34b8b5
line wrap: on
line diff
--- a/gamelib/gamegui.py	Wed May 09 21:10:45 2012 +0200
+++ b/gamelib/gamegui.py	Wed May 09 21:16:53 2012 +0200
@@ -208,6 +208,9 @@
         title = TextLabel((200, 20, 400, 50), "Choose equipment for %s"
                 % mission.NAME, font_medium, (255, 255, 255))
         self.add_child(title)
+        description = TextLabel((10, 70, 790, 20), mission.LONG_DESCRIPTION,
+                font_medium, (255, 255, 255))
+        self.add_child(description)
         self.parent = parent
         self.game = game
         self.money = ValueLabel((10, 75), 'Money')