aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoona Petrell <joona.t.petrell@nokia.com>2011-09-22 17:45:22 +0300
committerQt by Nokia <qt-info@nokia.com>2011-09-23 11:27:31 +0200
commit2790f9b1d5488f7f29903408eaa5d2a6118f55ee (patch)
tree8ceb54c3355e0f606c10d431ab8aa5dc1d1a6361
parent2403b2f5611d6faa2836d0c37327a507612c1620 (diff)
Fix QSGTextEdit::closeSoftwareInputPanel()
Change-Id: If50486b3159a9e40b2808a2a18aff5668012ea76 Reviewed-on: http://codereview.qt-project.org/5400 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Pekka Vuorela <pekka.ta.vuorela@nokia.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
-rw-r--r--src/declarative/items/qsgtextedit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/items/qsgtextedit.cpp b/src/declarative/items/qsgtextedit.cpp
index af018aef8c..5c33a6269f 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)