diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-09-24 00:14:59 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-09-24 00:14:59 +0000 |
| commit | 4eac43bf1c66847feef1711990e4c67043f90d79 (patch) | |
| tree | c69918366117b76ee38d6a793647115d59626717 /lib/python/Components | |
| parent | f94cd9f9cd9f8cb6ace109e58c060d820fc23f7d (diff) | |
| download | enigma2-4eac43bf1c66847feef1711990e4c67043f90d79.tar.gz enigma2-4eac43bf1c66847feef1711990e4c67043f90d79.zip | |
push down initial 'changed' event
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/Converter/MenuEntryCompare.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/Components/Converter/MenuEntryCompare.py b/lib/python/Components/Converter/MenuEntryCompare.py index 42cdc5d1..9f8228e1 100644 --- a/lib/python/Components/Converter/MenuEntryCompare.py +++ b/lib/python/Components/Converter/MenuEntryCompare.py @@ -20,6 +20,7 @@ class MenuEntryCompare(Converter, object): boolean = property(getBool) - def changed(self, *args, **kwargs): - if args[0][0] == self.CHANGED_DEFAULT: + def changed(self, what): + if what[0] == self.CHANGED_DEFAULT: self.source.onSelectionChanged.append(self.selChanged) + Converter.changed(self, what) |
