aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2003-10-31 19:07:30 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2003-10-31 19:07:30 +0800
commitf46f9dd484c83d85ee3ace18ec1cb15473c0f2d2 (patch)
tree359313a1a73a54987b8dc3ab3b7b3ab83e9555b3 /lib
parentfc8ce911b63ee1197effa81591c73fe8cab353d2 (diff)
downloadgsoc2013-epiphany-f46f9dd484c83d85ee3ace18ec1cb15473c0f2d2.tar
gsoc2013-epiphany-f46f9dd484c83d85ee3ace18ec1cb15473c0f2d2.tar.gz
gsoc2013-epiphany-f46f9dd484c83d85ee3ace18ec1cb15473c0f2d2.tar.bz2
gsoc2013-epiphany-f46f9dd484c83d85ee3ace18ec1cb15473c0f2d2.tar.lz
gsoc2013-epiphany-f46f9dd484c83d85ee3ace18ec1cb15473c0f2d2.tar.xz
gsoc2013-epiphany-f46f9dd484c83d85ee3ace18ec1cb15473c0f2d2.tar.zst
gsoc2013-epiphany-f46f9dd484c83d85ee3ace18ec1cb15473c0f2d2.zip
Set the cursor hotspot to something sensible. All bugs seem to be gone
2003-10-31 Marco Pesenti Gritti <marco@gnome.org> * lib/egg/egg-editable-toolbar.c: (set_drag_cursor): * lib/egg/egg-toolbar-editor.c: (set_drag_cursor): Set the cursor hotspot to something sensible. All bugs seem to be gone here, feel free to report more ;)
Diffstat (limited to 'lib')
-rwxr-xr-xlib/egg/egg-editable-toolbar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/egg/egg-editable-toolbar.c b/lib/egg/egg-editable-toolbar.c
index d01b0b3d8..b28318ca7 100755
--- a/lib/egg/egg-editable-toolbar.c
+++ b/lib/egg/egg-editable-toolbar.c
@@ -260,7 +260,7 @@ set_drag_cursor (GtkWidget *widget)
pixbuf = gdk_pixbuf_new_from_file (CURSOR_DIR "/art/hand-open.png", NULL);
cursor = gdk_cursor_new_from_pixbuf (gdk_display_get_default (),
- pixbuf, 0, 0);
+ pixbuf, 12, 12);
gdk_window_set_cursor (widget->window, cursor);
gdk_cursor_unref (cursor);
g_object_unref (pixbuf);