[Libreoffice-commits] core.git: vcl/unx

Caolán McNamara caolanm at redhat.com
Mon Mar 13 12:30:54 UTC 2017


 vcl/unx/gtk3/gtk3gtkframe.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4ea76db5e53235971b597a2810a6d12618d6aaea
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon Mar 13 12:28:12 2017 +0000

    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

diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
index 009ac68..9bfe602 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);


More information about the Libreoffice-commits mailing list