diff --git a/src/sugar3/graphics/palette.py b/src/sugar3/graphics/palette.py index be1bcda0..5a0bfea6 100644 --- a/src/sugar3/graphics/palette.py +++ b/src/sugar3/graphics/palette.py @@ -70,14 +70,24 @@ class _HeaderItem(Gtk.MenuItem): self.set_allocation(allocation) self.get_child().size_allocate(allocation) - -class _HeaderSeparator(Gtk.SeparatorMenuItem): - """A SeparatorMenuItem that can be styled in the theme.""" - - __gtype_name__ = 'SugarPaletteHeaderSeparator' - - def __init__(self): - Gtk.SeparatorMenuItem.__init__(self) + def do_draw(self, cr): + # force state normal, we don't want change color when hover + self.set_state(Gtk.StateType.NORMAL) + + # draw separator + allocation = self.get_allocation() + cr.save() + line_width = 2 + cr.set_line_width(line_width) + cr.set_source_rgb(.5, .5, .5) # button_grey #808080; + cr.move_to(0, allocation.height - line_width) + cr.line_to(allocation.width, allocation.height - line_width) + cr.stroke() + cr.restore() + + # draw content + Gtk.MenuItem.do_draw(self, cr) + return False class Palette(PaletteWindow): @@ -458,10 +468,6 @@ class Palette(PaletteWindow): self._label_menuitem.show() self._widget.append(self._label_menuitem) - separator = _HeaderSeparator() - self._widget.append(separator) - separator.show() - self._setup_widget() return self._widget