diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-02-05 14:03:44 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-02-05 14:47:07 +0000 |
commit | e35f3b6a3357fc3832a9d68ed37ddb9b5320ef0a (patch) | |
tree | 47371f0cf96e7aa1bab7500065c7962b0f9e8bb0 /sc | |
parent | 287bc1c66e44f6ec384987d14e8b49790d8f3261 (diff) |
Resolves: tdf#97465 like scroll ignore wheel for sc input handler inputchanged
Change-Id: Ide7fe1388ffe6f85a1f459037316d03193470d8a
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/app/inputwin.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx index e61945a94842..105ba1ab5086 100644 --- a/sc/source/ui/app/inputwin.cxx +++ b/sc/source/ui/app/inputwin.cxx @@ -1526,6 +1526,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 ); } |