Mercurial > parpg-source
comparison dialoguecontroller.py @ 17:7b31de1dc964
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 | 708a6f651c31 |
children | 98f26f7636d8 |
comparison
equal
deleted
inserted
replaced
16:5c587a0d9ad7 | 17:7b31de1dc964 |
---|---|
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 |