Remove _HeaderSeparator

The palette using a Gtk.Menu, had a separator displayed using a custom widget,
but that was not well displayed (the line didn't had the palette width
due to margin on the palette) and was broken on Gtk >= 3.16
Instead of use that widget to draw the separator line between at the bottom
of _HeaderItem, as we do with the toolbar buttons when the palette is displayed.
master
Gonzalo Odiard 9 years ago committed by Martin Abente Lahaye
parent 2ba05304f8
commit a873cfc04e

@ -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

Loading…
Cancel
Save