summaryrefslogtreecommitdiff
path: root/cut-n-paste/toolbar-editor/egg-editable-toolbar.c
diff options
context:
space:
mode:
Diffstat (limited to 'cut-n-paste/toolbar-editor/egg-editable-toolbar.c')
-rw-r--r--cut-n-paste/toolbar-editor/egg-editable-toolbar.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c
index 54f1e823..ad9c1755 100644
--- a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c
+++ b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c
@@ -298,7 +298,13 @@ move_item_cb (GtkAction *action,
gdk_event_get_coords (realevent, &event->motion.x, &event->motion.y);
gdk_event_get_root_coords (realevent, &event->motion.x_root, &event->motion.y_root);
- gtk_drag_begin (toolitem, list, GDK_ACTION_MOVE, 1, event);
+ gtk_drag_begin_with_coordinates (toolitem,
+ list,
+ GDK_ACTION_MOVE,
+ 1,
+ event,
+ event->motion.x,
+ event->motion.y);
gdk_event_free (event);
gtk_target_list_unref (list);
}