diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2018-04-26 03:40:29 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2018-04-26 22:13:55 +0200 |
commit | 4af174f659ecd1ae8338865a17e436aba9e74685 (patch) | |
tree | bc8bd605d6aa8001f460b4dc07309c76d28a3515 /sc | |
parent | baddcc38dee7b286cc73c1eaeb6f78d10b911a8e (diff) |
Also blacklist CommandEventId::LongPress
Change-Id: I187634f38092644c1111ad63f5d89071de1e6e83
Reviewed-on: https://gerrit.libreoffice.org/53515
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
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 bac9f99028a7..fd97dc58d21c 100644 --- a/sc/source/ui/app/inputwin.cxx +++ b/sc/source/ui/app/inputwin.cxx @@ -1426,6 +1426,10 @@ void ScTextWnd::Command( const CommandEvent& rCEvt ) { //don't call InputChanged for CommandEventId::Swipe } + else if ( nCommand == CommandEventId::LongPress ) + { + //don't call InputChanged for CommandEventId::LongPress + } else if ( nCommand == CommandEventId::ModKeyChange ) { //pass alt press/release to parent impl |