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

New commits:
commit bb1a4397dcb347b1f7bf300a0252afe1a66e6da8
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Wed Nov 24 15:54:38 2021 +0000
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Wed Nov 24 20:18:00 2021 +0100

    gtk3: I don't think it makes sense to claim a crossing event is consumed
    
    if it does, then we should use the return of m_aMouseMotionHdl.Call()
    
    Change-Id: I9f04fcba1ef1d9768c3ce3b042884110a63f26a4
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125781
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index 4c4d44539728..0efca48a7312 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -3119,7 +3119,7 @@ private:
         MouseEvent aMEvt(aPos, 0, eModifiers, nModCode, nModCode);
 
         m_aMouseMotionHdl.Call(aMEvt);
-        return true;
+        return false;
     }
 
 #if GTK_CHECK_VERSION(4, 0, 0)

Reply via email to