summaryrefslogtreecommitdiff
path: root/src/ui.py
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2012-07-25 00:36:42 +0200
committerTreeki <treeki@gmail.com>2012-07-25 00:36:42 +0200
commitfaaa82bd81f24fc897a5d0ae912381413625ddeb (patch)
treeb576338c35666e1b44810cec81bd07d5a185f509 /src/ui.py
parent1a7f17d93189ae9981ff286d67c9b0406e99ce96 (diff)
downloadkoopatlas-faaa82bd81f24fc897a5d0ae912381413625ddeb.tar.gz
koopatlas-faaa82bd81f24fc897a5d0ae912381413625ddeb.zip
moving to desktop
Diffstat (limited to 'src/ui.py')
-rw-r--r--src/ui.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ui.py b/src/ui.py
index 6754f17..540c52b 100644
--- a/src/ui.py
+++ b/src/ui.py
@@ -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)