From fce1ec4ed2ec0a9e2c62ee5c05d2087bb47e33eb Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 5 Feb 2016 14:03:44 +0000 Subject: 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 Reviewed-by: Miklos Vajna (cherry picked from commit daa1882dc2360cead712c3f100cbef0f35c74f5d) --- sc/source/ui/app/inputwin.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx index b3776fd30e8a..834f4a65e11c 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 ); } -- cgit