diff options
author | Shane Kearns <shane.kearns@accenture.com> | 2010-07-13 11:04:36 (GMT) |
---|---|---|
committer | Jesper Thomschutz <jesper.thomschutz@nokia.com> | 2010-08-05 10:21:38 (GMT) |
commit | 9994524bbc1e70e178c703f4ebeb51575bacc271 (patch) | |
tree | 65f25b69e7fe011f8b0990de2b5386c40ce63cb2 | |
parent | 6e196f796059558fe3d0e60c2e504b980d80dc73 (diff) | |
download | Qt-9994524bbc1e70e178c703f4ebeb51575bacc271.zip Qt-9994524bbc1e70e178c703f4ebeb51575bacc271.tar.gz Qt-9994524bbc1e70e178c703f4ebeb51575bacc271.tar.bz2 |
Fix last character being overwritten in password field
The temporary cursor position was not being updated after committing the
input (changing the cleartext into a *), as a result of which, the next
keypress was mistaken for a multitap input which should replace the last
character.
Task-number: QTBUG-11673
Reviewed-by: axis
(cherry picked from commit 7acf2417bd2ae17c2e3c289c7caed84219e5fecd)
-rw-r--r-- | src/gui/inputmethod/qcoefepinputcontext_s60.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp index 4cdc4ad..394d374 100644 --- a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp +++ b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp @@ -297,6 +297,10 @@ void QCoeFepInputContext::commitTemporaryPreeditString() return; commitCurrentString(false); + + //update cursor position, now this pre-edit text has been committed. + //this prevents next keypress overwriting it (QTBUG-11673) + m_cursorPos = focusWidget()->inputMethodQuery(Qt::ImCursorPosition).toInt(); } void QCoeFepInputContext::mouseHandler( int x, QMouseEvent *event) |