diff options
author | Marco Cecchetti <marco.cecchetti@collabora.com> | 2020-03-05 11:43:51 +0100 |
---|---|---|
committer | Marco Cecchetti <marco.cecchetti@collabora.com> | 2020-04-12 18:55:45 +0200 |
commit | 848dc8559bdfff855cb03306ae73131daa77c3f7 (patch) | |
tree | 82ea9ab085772f69c9363f60570956ee635ddc50 /sc | |
parent | 15ff451d4a1de46da8f949ee0e1e402bda845568 (diff) |
lok: get the formula input bar focused after inserting '='
Change-Id: I7f86ea7135fcb4071cc0162c233c63be6c9485bd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92083
Tested-by: Jenkins
Reviewed-by: Marco Cecchetti <marco.cecchetti@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/app/inputwin.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx index 26035be992ca..b80ab75b75ae 100644 --- a/sc/source/ui/app/inputwin.cxx +++ b/sc/source/ui/app/inputwin.cxx @@ -409,6 +409,8 @@ void ScInputWindow::Select() EditView* pView = aTextWindow.GetEditView(); if (pView) { + if (comphelper::LibreOfficeKit::isActive()) + TextGrabFocus(); pView->SetSelection( ESelection(0, nStartPos, 0, nEndPos) ); pScMod->InputChanged(pView); SetOkCancelMode(); |