| commit | 0d957c6474f6dfb713fd7ed6edc6edf70efe42b3 | [log] |
|---|---|---|
| author | Eike Rathke <erack@redhat.com> | Mon Sep 13 16:24:23 2021 +0200 |
| committer | Xisco Fauli <xiscofauli@libreoffice.org> | Tue Sep 14 10:15:44 2021 +0200 |
| tree | ee9bb217e7fa32fe17cc40be422410f3da6b4dd8 | |
| parent | ce9ce1ea6192ad566d0021377c9f6f7130da482f [diff] |
Explicitly set cursor position for x11 'gen' backend, tdf#144457 follow-up ... (and other backends?) Change-Id: If45b83080aa2df50ef27ad282eb6fa1d4a022703 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122037 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins (cherry picked from commit 37e2e99f7a3018dce0337b582b139d41e1e81a9a) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122060 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx index b5c6bcb..a36aac4 100644 --- a/cui/source/options/optgdlg.cxx +++ b/cui/source/options/optgdlg.cxx
@@ -1819,7 +1819,13 @@ IMPL_LINK( OfaLanguagesTabPage, DatePatternsHdl, weld::Entry&, rEd, void ) } } if (bModified) rEd.set_text(aBuf.makeStringAndClear()); // This even keeps the cursor position so all good. { // gtk3 keeps the cursor position on equal length set_text() but at // least the 'gen' backend does not and resets to 0. const int nCursorPos = rEd.get_position(); rEd.set_text(aBuf.makeStringAndClear()); rEd.set_position(nCursorPos); } if (bValid) rEd.set_message_type(weld::EntryMessageType::Normal); else