Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/view.py
diff options
context:
space:
mode:
Diffstat (limited to 'view.py')
-rw-r--r--view.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/view.py b/view.py
index 20ebdac..326ced8 100644
--- a/view.py
+++ b/view.py
@@ -50,8 +50,10 @@ class MindMapView(Canvas):
logging.debug('__dragging_started_cb %r %r' % (x, y))
thought = kwargs['element']
thought.dragging = True
+ self.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.HAND1))
def __dragging_finished_cb(self, **kwargs):
+ self.window.set_cursor(None)
x, y = kwargs['position']
thought = kwargs['element']
logging.debug('__dragging_finished_cb %r %r' % (x, y))