diff options
author | axis <qt-info@nokia.com> | 2009-11-03 12:56:42 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-11-03 13:18:15 (GMT) |
commit | 381247326743888075979664f50ea804d6123c42 (patch) | |
tree | fe6b082b8123ff35b06703d7e993f9463d051b22 /src/gui/text | |
parent | 95f7076937065a78029fc50d506fba58f8c6199c (diff) | |
download | Qt-381247326743888075979664f50ea804d6123c42.zip Qt-381247326743888075979664f50ea804d6123c42.tar.gz Qt-381247326743888075979664f50ea804d6123c42.tar.bz2 |
Fixed an input method bug when erasing the last character.
Previously we didn't update the editor contents if the new preedit
string was empty. However, it could be empty because the user just
erased it, so the bug was fixed by checking whether the preedit
string in the event and in the editor are different.
RevBy: Denis Dzyubenko
Diffstat (limited to 'src/gui/text')
-rw-r--r-- | src/gui/text/qtextcontrol.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/text/qtextcontrol.cpp b/src/gui/text/qtextcontrol.cpp index 3f6545c..9497b6f 100644 --- a/src/gui/text/qtextcontrol.cpp +++ b/src/gui/text/qtextcontrol.cpp @@ -1831,7 +1831,8 @@ void QTextControlPrivate::inputMethodEvent(QInputMethodEvent *e) e->ignore(); return; } - bool isGettingInput = !e->commitString().isEmpty() || !e->preeditString().isEmpty() + bool isGettingInput = !e->commitString().isEmpty() + || e->preeditString() != cursor.block().layout()->preeditAreaText() || e->replacementLength() > 0; if (isGettingInput) { |