changeset 93:f0bf77787d1e

Display long ddescription on mission screen
author Neil Muller <drnlmuller@gmail.com>
date Wed, 09 May 2012 21:16:53 +0200
parents 56b0a1c4de35
children 245ef50de84d
files gamelib/gamegui.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
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')