summaryrefslogtreecommitdiff
path: root/src/ui.py
diff options
context:
space:
mode:
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)