Mercurial > parpg-core
comparison src/parpg/dialoguecontroller.py @ 39:8b3890f17f94
FifeManager no longer subclasses ApplicationBase
PARPGApplication stores an instance of tbe manager instead
author | KarstenBock@gmx.net |
---|---|
date | Wed, 03 Aug 2011 22:57:52 +0200 |
parents | 94cb5843dcbb |
children | ad75fa042b99 |
comparison
equal
deleted
inserted
replaced
38:bd1e3b743518 | 39:8b3890f17f94 |
---|---|
52 | 52 |
53 | 53 |
54 def pump(self, dt): | 54 def pump(self, dt): |
55 ControllerBase.pump(self, dt) | 55 ControllerBase.pump(self, dt) |
56 if self.dialogue and not self.dialogue.active: | 56 if self.dialogue and not self.dialogue.active: |
57 self.application.pop_mode() | 57 self.application.manager.pop_mode() |
58 self.model.pause(False) | 58 self.model.pause(False) |
59 self.view.hud.enabled = True | 59 self.view.hud.enabled = True |
60 | 60 |