Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpmoxhay <pmoxhay@earthlink.net>2009-04-10 13:16:34 (GMT)
committer pmoxhay <pmoxhay@earthlink.net>2009-04-10 13:16:34 (GMT)
commit37b8913eff69c1eb3a2d0cd2770c9b2414d7c777 (patch)
tree40ea55720b41a4f12cb539a1cb066d58f44a3b00
parent5d16d925a35b2da6a2abfdce299d96ed594a240d (diff)
Another small fix for DropTarget hiliting.
-rw-r--r--linesegmentdroptarget.py2
-rw-r--r--signsdroptarget.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/linesegmentdroptarget.py b/linesegmentdroptarget.py
index ac3a66d..8c75d84 100644
--- a/linesegmentdroptarget.py
+++ b/linesegmentdroptarget.py
@@ -117,6 +117,7 @@ class LineSegmentDropTarget(DropTargetObject):
self.contents = movable_object
self.full = True
self.hilite = False
+ self.queue_draw()
if self.drop_origin:
self.container.select_object(self.drop_origin.line1)
@@ -146,6 +147,7 @@ class LineSegmentDropTarget(DropTargetObject):
self.contents = movable_object
self.full = True
self.hilite = False
+ self.queue_draw()
if self.drop_origin:
self.container.select_object(self.drop_origin.line1)
diff --git a/signsdroptarget.py b/signsdroptarget.py
index 9909fa4..969adad 100644
--- a/signsdroptarget.py
+++ b/signsdroptarget.py
@@ -106,6 +106,7 @@ class SignsDropTarget(DropTargetObject):
self.contents = movable_object
self.full = True
self.hilite = False
+ self.queue_draw()
if self.drop_origin:
self.container.select_object(self.drop_origin.ltsymbol)
@@ -130,6 +131,7 @@ class SignsDropTarget(DropTargetObject):
self.contents = movable_object
self.full = True
self.hilite = False
+ self.queue_draw()
if self.drop_origin:
self.container.select_object(self.drop_origin.ltsymbol)