Android: Fix keyboard inputType and imeOptions

There was a small mistake in:
d2ae5ef51e3339c11b1c0ed0b09f9d17b9708f53 commit, which caused a
regression in the input method.

While the function parameter name has been changed, the assignment name
has not. This resulted in the values never actually getting updated.

Fixes: QTBUG-125410
Pick-to: 6.7
Change-Id: I8e64e991d02546ddd078fd273f0b57491c63b55c
Reviewed-by: Tinja Paavoseppä <tinja.paavoseppa@qt.io>
(cherry picked from commit 79e00b0b25765b85b112b601fee70184b1efe3c0)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Bartlomiej Moskal 2024-06-10 14:34:44 +02:00 committed by Qt Cherry-pick Bot
parent d908c6162c
commit 7b65e0395f

View File

@ -61,7 +61,7 @@ class QtEditText extends View
{
if (m_imeOptions == imeOptions)
return;
m_imeOptions = m_imeOptions;
m_imeOptions = imeOptions;
m_optionsChanged = true;
}
@ -78,7 +78,7 @@ class QtEditText extends View
{
if (m_inputType == inputType)
return;
m_inputType = m_inputType;
m_inputType = inputType;
m_optionsChanged = true;
}