git.cweiske.de
/
enigma2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add invalidate to eListboxPythonStringContent
[enigma2.git]
/
lib
/
python
/
Screens
/
ScartLoopThrough.py
1
from Screen import Screen
2
from Components.ActionMap import ActionMap
3
4
class ScartLoopThrough(Screen):
5
def __init__(self, session):
6
Screen.__init__(self, session)
7
8
self["actions"] = ActionMap(["OkCancelActions"],
9
{
10
"cancel": self.close
11
})
12