Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view
diff options
context:
space:
mode:
authorTomeu <tomeu@bicho.(none)>2007-04-05 15:22:27 (GMT)
committer Tomeu <tomeu@bicho.(none)>2007-04-05 15:22:27 (GMT)
commit5990e5bfd15e2768ba2c9b0bb50491766ea29519 (patch)
tree5e8cbe28b68d6eaf8a9ec87a681b157cc8914a83 /shell/view
parentbd3e084805abe2557f391ece24000683a7a93f2f (diff)
Return TRUE again in drag_motion_cb for accepting dnd drops.
Diffstat (limited to 'shell/view')
-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 b1a53c4..2dcad10 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')