diff options
author | Rashesh <rashesh.padia@collabora.com> | 2024-12-19 14:03:52 +0530 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2024-12-20 21:30:15 +0100 |
commit | 0c900b165d4d24c33942e8b59f85243706b93890 (patch) | |
tree | 88a273d1d0c6b33c2fd31515da82f0eafa7a42b9 | |
parent | a8bffc1c6a9296294625e75e3ddfb42931d91586 (diff) |
sc: fix: can't switch focus from font menu back to edit window
- Steps to reproduce:
1. Open Calc
2. Put the cursor in the font selection field, and type
3. Try to move the cursor back to the sheet and to type
Change-Id: I596e5380d38f761a310c2a363389b0b03a0e94ae
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178787
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
(cherry picked from commit 2c95e7186e053ed5f2e7d8388fbe087fa60636c2)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178796
Tested-by: Jenkins
-rw-r--r-- | sc/source/ui/app/inputwin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx index 32dfb734e7e5..6a753acbd5ab 100644 --- a/sc/source/ui/app/inputwin.cxx +++ b/sc/source/ui/app/inputwin.cxx @@ -2253,7 +2253,7 @@ void ScTextWnd::TextGrabFocus() // Position window ScPosWnd::ScPosWnd(vcl::Window* pParent, ScTabViewShell* pViewShell) - : InterimItemWindow(pParent, u"modules/scalc/ui/posbox.ui"_ustr, u"PosBox"_ustr, false, + : InterimItemWindow(pParent, u"modules/scalc/ui/posbox.ui"_ustr, u"PosBox"_ustr, true, reinterpret_cast<sal_uInt64>(pViewShell)) , m_xWidget(m_xBuilder->weld_combo_box(u"pos_window"_ustr)) , m_nAsyncGetFocusId(nullptr) |