Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/draggableobject.py
diff options
context:
space:
mode:
Diffstat (limited to 'draggableobject.py')
-rw-r--r--draggableobject.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/draggableobject.py b/draggableobject.py
index 7ccf12d..360e30b 100644
--- a/draggableobject.py
+++ b/draggableobject.py
@@ -79,8 +79,12 @@ class DraggableObject(Object):
i += 1
if o.contains(self.get_bounds()) and not o.full:
o.hilite = True
+ #print "DraggableObject: DropTarget's hilite set to True, queue draw"
+ o.queue_draw()
else:
o.hilite = False
+ #print "DraggableObject: DropTarget's hilite set to False, queue draw"
+ o.queue_draw()
# End the drag.
elif event.type == gtk.gdk.BUTTON_RELEASE: