From 2790f9b1d5488f7f29903408eaa5d2a6118f55ee Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Thu, 22 Sep 2011 17:45:22 +0300 Subject: [PATCH] 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 --- src/declarative/items/qsgtextedit.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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) -- 1.7.2.5