Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-18 16:35:45 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-18 16:35:45 (GMT)
commite0785e7aabd89ba21a913fc97d2c6e89352f6f14 (patch)
tree0b6db81c8d6d01503ecde376c5e954c70bc8503f /shell
parent5741d21be9e34cdd8606b04bad961169a49d91cb (diff)
Fix dragging clipboard objects out from the frame.
Diffstat (limited to 'shell')
-rw-r--r--shell/view/frame/clipboardbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/view/frame/clipboardbox.py b/shell/view/frame/clipboardbox.py
index 6c5870f..33d583c 100644
--- a/shell/view/frame/clipboardbox.py
+++ b/shell/view/frame/clipboardbox.py
@@ -75,7 +75,7 @@ class ClipboardBox(hippo.CanvasBox):
return self._owns_clipboard
def _get_icon_at_coords(self, x, y):
- box_x, box_y = self.get_context().get_position(self)
+ box_x, box_y = self.get_context().translate_to_widget(self)
x -= box_x
y -= box_y
for object_id, icon in self._icons.iteritems():