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/Satconfig.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/Satconfig.py')
| -rw-r--r-- | lib/python/Screens/Satconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 9e692e63..3930aaa3 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -193,7 +193,7 @@ class NimSelection(Screen): { "ok": self.okbuttonClick , "cancel": self.close - }, -1) + }, -2) def okbuttonClick(self): selection = self["nimlist"].getCurrent() |
