summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2021-09-13 16:24:23 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2021-09-13 18:28:33 +0200
commit2adcd82658f8c536e8288b4906b005b8ebe3fbb8 (patch)
tree65e503bfb1a03055380aa71bf11da9f5bbbbea6c
parentResolves: tdf#116184 Check that there is no trailing number behind a match (diff)
downloadcore-2adcd82658f8c536e8288b4906b005b8ebe3fbb8.tar.gz
core-2adcd82658f8c536e8288b4906b005b8ebe3fbb8.zip
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/+/122059 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r--cui/source/options/optgdlg.cxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx
index 4d376043ced7..baa96ad3166c 100644
--- a/cui/source/options/optgdlg.cxx
+++ b/cui/source/options/optgdlg.cxx
@@ -1783,7 +1783,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