sc/source/ui/app/inputwin.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit baddcc38dee7b286cc73c1eaeb6f78d10b911a8e
Author: Maxim Monastirsky <momonas...@gmail.com>
Date:   Mon Apr 23 03:04:07 2018 +0300

    sc: Fix menubar auto-accelerator behavior under gtk2
    
    ... when the focus is in the input field of the formula bar.
    Regression of commit d90dcf3554a84b5600800ee6deb3cde879c62b8d
    ("tdf#113894 release ctrl of ctrl+v in input line should strip
    formatting").
    
    Change-Id: I819dc8106901b967eda505a488bf99cda57f5469
    Reviewed-on: https://gerrit.libreoffice.org/53514
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Maxim Monastirsky <momonas...@gmail.com>

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index 80823aca43f4..bac9f99028a7 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -1428,7 +1428,8 @@ void ScTextWnd::Command( const CommandEvent& rCEvt )
         }
         else if ( nCommand == CommandEventId::ModKeyChange )
         {
-            //don't call InputChanged for CommandEventId::ModKeyChange
+            //pass alt press/release to parent impl
+            Window::Command(rCEvt);
         }
         else
             SC_MOD()->InputChanged( mpEditView.get() );
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to