diff --git a/sugar/graphics/toggleiconbutton.py b/sugar/graphics/toggleiconbutton.py index ae594f84..d161e156 100644 --- a/sugar/graphics/toggleiconbutton.py +++ b/sugar/graphics/toggleiconbutton.py @@ -63,7 +63,7 @@ class ToggleIconButton(IconButton, hippo.CanvasItem): return IconButton.do_button_press_event(self, event) def prelight(self, enter): - if enter: + if enter and not self._toggled: IconButton.prelight(self, enter) else: self.props.background_color = self._get_bg_color()