diff --git a/sugar/graphics/radiotoolbutton.py b/sugar/graphics/radiotoolbutton.py index 7bede421..cf0cc64a 100644 --- a/sugar/graphics/radiotoolbutton.py +++ b/sugar/graphics/radiotoolbutton.py @@ -51,6 +51,14 @@ class RadioToolButton(gtk.RadioToolButton): if self._palette and self._palette.is_up(): invoker = self._palette.props.invoker invoker.draw_rectangle(event, self._palette) + elif self.child.state == gtk.STATE_PRELIGHT: + self.child.style.paint_box(event.window, gtk.STATE_PRELIGHT, + gtk.SHADOW_NONE, event.area, + self.child, "toolbutton-prelight", + self.allocation.x, + self.allocation.y, + self.allocation.width, + self.allocation.height) gtk.RadioToolButton.do_expose_event(self, event) diff --git a/sugar/graphics/toggletoolbutton.py b/sugar/graphics/toggletoolbutton.py index 72a6c843..a83bebcc 100644 --- a/sugar/graphics/toggletoolbutton.py +++ b/sugar/graphics/toggletoolbutton.py @@ -47,6 +47,14 @@ class ToggleToolButton(gtk.ToggleToolButton): if self._palette and self._palette.is_up(): invoker = self._palette.props.invoker invoker.draw_rectangle(event, self._palette) + elif self.child.state == gtk.STATE_PRELIGHT: + self.child.style.paint_box(event.window, gtk.STATE_PRELIGHT, + gtk.SHADOW_NONE, event.area, + self.child, "toolbutton-prelight", + self.allocation.x, + self.allocation.y, + self.allocation.width, + self.allocation.height) gtk.ToggleToolButton.do_expose_event(self, event) diff --git a/sugar/graphics/toolbutton.py b/sugar/graphics/toolbutton.py index b42f63ec..2b90fd40 100644 --- a/sugar/graphics/toolbutton.py +++ b/sugar/graphics/toolbutton.py @@ -51,6 +51,14 @@ class ToolButton(gtk.ToolButton): if self._palette and self._palette.is_up(): invoker = self._palette.props.invoker invoker.draw_rectangle(event, self._palette) + elif self.child.state == gtk.STATE_PRELIGHT: + self.child.style.paint_box(event.window, gtk.STATE_PRELIGHT, + gtk.SHADOW_NONE, event.area, + self.child, "toolbutton-prelight", + self.allocation.x, + self.allocation.y, + self.allocation.width, + self.allocation.height) gtk.ToolButton.do_expose_event(self, event)