Pass Qt::ImQueryInput instead of Qt::CursorRectangle in QSgItem::updateMicroFocus...
[profile/ivi/qtdeclarative.git] / src / declarative / items / qsgitem.cpp
index f3de1a6..a1e4317 100644 (file)
@@ -2937,7 +2937,7 @@ void QSGItem::updateMicroFocus()
 {
     QInputPanel *p = qApp->inputPanel();
     if (p->inputItem() == this)
-        qApp->inputPanel()->update(Qt::ImCursorRectangle);
+        qApp->inputPanel()->update(Qt::ImQueryInput);
 }
 
 QVariant QSGItem::inputMethodQuery(Qt::InputMethodQuery query) const