diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-03-13 12:28:12 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-03-13 12:30:09 +0000 |
commit | 4ea76db5e53235971b597a2810a6d12618d6aaea (patch) | |
tree | 187cafa3ada5c2cac2f2e477ed4a7369a9c066d5 /vcl/unx | |
parent | 4842f402c68397edcb960f8e83f43028af8eb3db (diff) |
rhbz#1431476 dnd has started copying instead of moving slides
Is suspect something has changed in gtk3, and I think we're
not supposed to use gdk_drag_drop_succeeded at this point, but
instead we'd get a dragFailed signal on the failure case
Change-Id: I6b305db56a29255b468ca9182d1f7e57cb4c10f4
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/gtk3/gtk3gtkframe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx index 009ac680747c..9bfe6027405c 100644 --- a/vcl/unx/gtk3/gtk3gtkframe.cxx +++ b/vcl/unx/gtk3/gtk3gtkframe.cxx @@ -4231,7 +4231,7 @@ void GtkDragSource::dragEnd(GdkDragContext* context) { datatransfer::dnd::DragSourceDropEvent aEv; aEv.DropAction = GdkToVcl(gdk_drag_context_get_selected_action(context)); - aEv.DropSuccess = gdk_drag_drop_succeeded(context); + aEv.DropSuccess = true; auto xListener = m_xListener; m_xListener.clear(); xListener->dragDropEnd(aEv); |