From d7d1e172a3995b44350527814a7b3ac0fda3feff Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Wed, 15 Aug 2007 19:32:10 +0000 Subject: Let the button/theme deal with prelight. I don't think it fits inside palette drawing. --- (limited to 'sugar/graphics/palette.py') diff --git a/sugar/graphics/palette.py b/sugar/graphics/palette.py index 2d6b35b..ea298cb 100644 --- a/sugar/graphics/palette.py +++ b/sugar/graphics/palette.py @@ -577,29 +577,19 @@ class WidgetInvoker(Invoker): def draw_invoker_rect(self, event, palette): style = self._widget.style - if palette.is_up(): - gap = _calculate_gap(self.get_rect(), palette.get_rect()) - - if gap: - style.paint_box_gap(event.window, gtk.STATE_PRELIGHT, - gtk.SHADOW_IN, event.area, self._widget, - "palette-invoker", - self._widget.allocation.x, - self._widget.allocation.y, - self._widget.allocation.width, - self._widget.allocation.height, - gap[0], gap[1], gap[2]) - else: - style.paint_box(event.window, gtk.STATE_PRELIGHT, + gap = _calculate_gap(self.get_rect(), palette.get_rect()) + if gap: + style.paint_box_gap(event.window, gtk.STATE_PRELIGHT, gtk.SHADOW_IN, event.area, self._widget, "palette-invoker", self._widget.allocation.x, self._widget.allocation.y, self._widget.allocation.width, - self._widget.allocation.height) + self._widget.allocation.height, + gap[0], gap[1], gap[2]) else: style.paint_box(event.window, gtk.STATE_PRELIGHT, - gtk.SHADOW_NONE, event.area, self._widget, + gtk.SHADOW_IN, event.area, self._widget, "palette-invoker", self._widget.allocation.x, self._widget.allocation.y, -- cgit v0.9.1