diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-10-06 16:23:31 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-10-06 16:23:31 +0000 |
| commit | 6d7673190e7fec573aed8e15e98d470cd4189d52 (patch) | |
| tree | 68ee2632e3b6958634599d2d7bbebb5faf5cfe74 /lib/python/Screens/Setup.py | |
| parent | 5b05795a120b445297ef18dd97a54d78bdc5cb23 (diff) | |
| download | enigma2-6d7673190e7fec573aed8e15e98d470cd4189d52.tar.gz enigma2-6d7673190e7fec573aed8e15e98d470cd4189d52.zip | |
finally fix priorities: ConfigListScreen's action must be -1 to override eListbox' 0, the other setup screens need to use -2 to override ConfigListScreen
Diffstat (limited to 'lib/python/Screens/Setup.py')
| -rw-r--r-- | lib/python/Screens/Setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py index b36a6b45..09984bd8 100644 --- a/lib/python/Screens/Setup.py +++ b/lib/python/Screens/Setup.py @@ -89,7 +89,7 @@ class Setup(ConfigListScreen, Screen): { "cancel": self.keyCancel, "save": self.keySave, - }, -1) + }, -2) ConfigListScreen.__init__(self, list, session = session) |
