X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FSources%2FList.py;h=6f0670a1f6f059d8485d0c0016c8a79847ce7cd8;hp=1eab32b22db1314cf0ba458b6fa11378592038ce;hb=6249914820d4028175d86237fdac9b155d1834fa;hpb=ba3ca7624c0b05d5340ad5c08995a345a51384df diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py index 1eab32b..6f0670a 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)