diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-29 00:48:56 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-29 00:48:56 +0000 |
| commit | 07a7a25ff5c6cc25e9ab4cf1ef5b3d6cd9c8e0b3 (patch) | |
| tree | eb94f44348bace93442b7039041e6604c1eaf927 /lib/python | |
| parent | 9f3ff2c642130e984c3df82fa6228da99b132f74 (diff) | |
| download | enigma2-07a7a25ff5c6cc25e9ab4cf1ef5b3d6cd9c8e0b3.tar.gz enigma2-07a7a25ff5c6cc25e9ab4cf1ef5b3d6cd9c8e0b3.zip | |
add title
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py index efd10e36..4fbcbc04 100644 --- a/lib/python/Screens/Setup.py +++ b/lib/python/Screens/Setup.py @@ -121,11 +121,14 @@ class Setup(Screen): if ItemText != setup: continue self.addItems(list, x.childNodes); + myTitle = getValbyAttr(x, "title") #check for list.entries > 0 else self.close self["config"] = ConfigList(list) + self["title"] = Label(myTitle); + self["ok"] = Label("OK") self["cancel"] = Label("Cancel") |
