diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-07-30 22:56:43 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-07-30 22:56:43 +0000 |
| commit | 1557c715e461d5a7deb04bb008c6497441351bbe (patch) | |
| tree | 8a378b20ca3bebab0b2eca1742c10dfd746cb2a1 /lib/python/Components/Sources/MenuList.py | |
| parent | b8783e5b26a7dd0601bece623c4cbfe19f57977b (diff) | |
| download | enigma2-1557c715e461d5a7deb04bb008c6497441351bbe.tar.gz enigma2-1557c715e461d5a7deb04bb008c6497441351bbe.zip | |
some minor speedups using caches and more selective updating
Diffstat (limited to 'lib/python/Components/Sources/MenuList.py')
| -rw-r--r-- | lib/python/Components/Sources/MenuList.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Sources/MenuList.py b/lib/python/Components/Sources/MenuList.py index 98764418..dd5e18f7 100644 --- a/lib/python/Components/Sources/MenuList.py +++ b/lib/python/Components/Sources/MenuList.py @@ -9,7 +9,7 @@ class MenuList(Source, object): def setList(self, list): self.__list = list - self.changed() + self.changed((self.CHANGED_ALL,)) list = property(lambda self: self.__list, setList) |
