aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rwxr-xr-xlib/egg/egg-editable-toolbar.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 94da5ecc7..e716724a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
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 ;)
+
+2003-10-31 Marco Pesenti Gritti <marco@gnome.org>
+
* lib/egg/egg-editable-toolbar.c: (toolbar_drag_motion_cb):
When changing toolbar unhighlight the old one, not the new
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);