aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-07-19 02:05:09 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-07-19 02:05:09 +0000
commit7090eb86e3ee526268078e35587f4f877b097219 (patch)
tree0381f03a7a7f63492aad06aa5a7f99f629485080 /lib/python
parent65f6d162b837f60ce76fa308f741bd0b6516563e (diff)
downloadenigma2-7090eb86e3ee526268078e35587f4f877b097219.tar.gz
enigma2-7090eb86e3ee526268078e35587f4f877b097219.zip
show 'last' marks
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/Extensions/CutListEditor/plugin.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Plugins/Extensions/CutListEditor/plugin.py b/lib/python/Plugins/Extensions/CutListEditor/plugin.py
index 241f43bb..3979da67 100644
--- a/lib/python/Plugins/Extensions/CutListEditor/plugin.py
+++ b/lib/python/Plugins/Extensions/CutListEditor/plugin.py
@@ -26,6 +26,8 @@ def CutListEntry(where, what):
type = "OUT"
elif what == 2:
type = "MARK"
+ elif what == 3:
+ type = "LAST"
res.append(MultiContentEntryText(size=(400, 20), text = "%dh:%02dm:%02ds:%03d" % (h, m, s, ms)))
res.append(MultiContentEntryText(pos=(400,0), size=(130, 20), text = type, flags = RT_HALIGN_RIGHT))