From: Joona Petrell Date: Thu, 22 Sep 2011 14:45:22 +0000 (+0300) Subject: Fix QSGTextEdit::closeSoftwareInputPanel() X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=2790f9b1d5488f7f29903408eaa5d2a6118f55ee;p=konrad%2Fqtdeclarative.git Fix QSGTextEdit::closeSoftwareInputPanel() Change-Id: If50486b3159a9e40b2808a2a18aff5668012ea76 Reviewed-on: http://codereview.qt-project.org/5400 Reviewed-by: Qt Sanity Bot Reviewed-by: Pekka Vuorela Reviewed-by: Lars Knoll --- diff --git a/src/declarative/items/qsgtextedit.cpp b/src/declarative/items/qsgtextedit.cpp index af018ae..5c33a62 100644 --- a/src/declarative/items/qsgtextedit.cpp +++ b/src/declarative/items/qsgtextedit.cpp @@ -1966,7 +1966,7 @@ void QSGTextEdit::openSoftwareInputPanel() void QSGTextEdit::closeSoftwareInputPanel() { if (qGuiApp) - qGuiApp->inputPanel()->show(); + qGuiApp->inputPanel()->hide(); } void QSGTextEdit::focusInEvent(QFocusEvent *event)