From e9119e57335b1a5c6758e90cc4b242c619e8b27e Mon Sep 17 00:00:00 2001 From: Reinier Heeres Date: Thu, 22 Nov 2007 17:36:03 +0100 Subject: [PATCH] Fix palette issue in Friends frame, part of #4515 --- lib/sugar/graphics/palette.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/sugar/graphics/palette.py b/lib/sugar/graphics/palette.py index 69dc0715..a0543cb1 100644 --- a/lib/sugar/graphics/palette.py +++ b/lib/sugar/graphics/palette.py @@ -611,13 +611,14 @@ class WidgetInvoker(Invoker): widget.connect('leave-notify-event', self._leave_notify_event_cb) def get_rect(self): - win_x, win_y = self._widget.window.get_origin() - rectangle = self._widget.get_allocation() + x, y = self._widget.window.get_origin() + allocation = self._widget.get_allocation() - x = win_x + rectangle.x - y = win_y + rectangle.y - width = rectangle.width - height = rectangle.height + if self._widget.flags() & gtk.NO_WINDOW: + x += allocation.x + y += allocation.y + width = allocation.width + height = allocation.height return gtk.gdk.Rectangle(x, y, width, height)