[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - sc/source

Caolán McNamara caolanm at redhat.com
Fri Feb 19 14:57:11 UTC 2016


 sc/source/ui/app/inputwin.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit daa1882dc2360cead712c3f100cbef0f35c74f5d
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Fri Feb 5 14:03:44 2016 +0000

    Resolves: tdf#97465 like wheel ignore swipe for sc input handler inputchanged
    
    (cherry picked from commit e35f3b6a3357fc3832a9d68ed37ddb9b5320ef0a)
    (cherry picked from commit 113f000d38c34dd4dda6903976f8febf6d95375c)
    
    Change-Id: Ide7fe1388ffe6f85a1f459037316d03193470d8a
    Reviewed-on: https://gerrit.libreoffice.org/22156
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index b3776fd..834f4a6 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -1646,6 +1646,10 @@ void ScTextWnd::Command( const CommandEvent& rCEvt )
         {
             //don't call InputChanged for CommandEventId::Wheel
         }
+        else if ( nCommand == CommandEventId::Swipe )
+        {
+            //don't call InputChanged for CommandEventId::Swipe
+        }
         else
             SC_MOD()->InputChanged( pEditView );
     }


More information about the Libreoffice-commits mailing list