[Libreoffice-commits] core.git: sc/source

Maxim Monastirsky momonasmon at gmail.com
Thu Apr 26 20:15:25 UTC 2018


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

New commits:
commit 4af174f659ecd1ae8338865a17e436aba9e74685
Author: Maxim Monastirsky <momonasmon at gmail.com>
Date:   Thu Apr 26 03:40:29 2018 +0300

    Also blacklist CommandEventId::LongPress
    
    Change-Id: I187634f38092644c1111ad63f5d89071de1e6e83
    Reviewed-on: https://gerrit.libreoffice.org/53515
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Maxim Monastirsky <momonasmon at gmail.com>

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


More information about the Libreoffice-commits mailing list