From 61d77a6d0b0bff1769932e11264e203c565f6d4f Mon Sep 17 00:00:00 2001 From: Gonzalo Odiard Date: Thu, 02 Dec 2010 17:13:33 +0000 Subject: fix SL #2337 Shape merged cursor icons have active cursor point not at the tip of the cursor --- diff --git a/Area.py b/Area.py index 13417fd..df3ec9b 100644 --- a/Area.py +++ b/Area.py @@ -1334,7 +1334,7 @@ class Area(gtk.DrawingArea): else: filename = os.path.join('images', tool['name'] + '.png') pixbuf = gtk.gdk.pixbuf_new_from_file(filename) - cursor = gtk.gdk.Cursor(display, pixbuf, 6, 21) + cursor = gtk.gdk.Cursor(display, pixbuf, 0, 0) except gobject.GError: cursor = None -- cgit v0.9.1