aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sources/List.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-02-11 23:14:35 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-02-11 23:14:35 +0100
commit325b302e9142dcec73452ea1e5207d94855a0ab2 (patch)
tree91d8b666087bb090e250e06277cfb200569b8cdf /lib/python/Components/Sources/List.py
parente058cb26c1fe4a6352ac5987c94694c0ecc1ff98 (diff)
parent7c2f35aa189b8e3d4d5e3fece3362d71ee160762 (diff)
downloadenigma2-325b302e9142dcec73452ea1e5207d94855a0ab2.tar.gz
enigma2-325b302e9142dcec73452ea1e5207d94855a0ab2.zip
Merge branch 'bug_443_listbox_selection' into experimental
Diffstat (limited to 'lib/python/Components/Sources/List.py')
-rw-r--r--lib/python/Components/Sources/List.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py
index 1eab32b2..6f0670a1 100644
--- a/lib/python/Components/Sources/List.py
+++ b/lib/python/Components/Sources/List.py
@@ -91,8 +91,9 @@ to generate HTML."""
return self.__style
def setStyle(self, style):
- self.__style = style
- self.changed((self.CHANGED_SPECIFIC, "style"))
+ if self.__style != style:
+ self.__style = style
+ self.changed((self.CHANGED_SPECIFIC, "style"))
style = property(getStyle, setStyle)