diff options
author | Treeki <treeki@gmail.com> | 2012-07-25 00:36:42 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-07-25 00:36:42 +0200 |
commit | faaa82bd81f24fc897a5d0ae912381413625ddeb (patch) | |
tree | b576338c35666e1b44810cec81bd07d5a185f509 /src/ui.py | |
parent | 1a7f17d93189ae9981ff286d67c9b0406e99ce96 (diff) | |
download | koopatlas-faaa82bd81f24fc897a5d0ae912381413625ddeb.tar.gz koopatlas-faaa82bd81f24fc897a5d0ae912381413625ddeb.zip |
moving to desktop
Diffstat (limited to 'src/ui.py')
-rw-r--r-- | src/ui.py | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -61,12 +61,8 @@ class KPPathNodeList(QtGui.QWidget): "Ladder", "LadderLeft", "LadderRight", "Fall", "Swim", "Run", "Pipe", "Door"] animation = AnimationList[self.associate.animation] - if self.associate.secret == 0: - unlock = 'Normal' - else: - unlock = 'Secret' - return 'Path: {0} Exit, {1}'.format(unlock, animation) + return 'Path: {1}'.format(None, animation) elif role == Qt.CheckStateRole: return (Qt.Checked if self.layer.visible else Qt.Unchecked) |