From 5990e5bfd15e2768ba2c9b0bb50491766ea29519 Mon Sep 17 00:00:00 2001 From: Tomeu Date: Thu, 5 Apr 2007 17:22:27 +0200 Subject: [PATCH] Return TRUE again in drag_motion_cb for accepting dnd drops. --- shell/view/frame/clipboardbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/view/frame/clipboardbox.py b/shell/view/frame/clipboardbox.py index b1a53c4d..2dcad10e 100644 --- a/shell/view/frame/clipboardbox.py +++ b/shell/view/frame/clipboardbox.py @@ -146,7 +146,7 @@ class ClipboardBox(hippo.CanvasBox): def drag_motion_cb(self, widget, context, x, y, time): logging.debug('ClipboardBox._drag_motion_cb') context.drag_status(gtk.gdk.ACTION_COPY, time) - return False; + return True; def drag_drop_cb(self, widget, context, x, y, time): logging.debug('ClipboardBox._drag_drop_cb')