aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MainApp.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/MainApp.cpp b/MainApp.cpp
index d5de395..4bb10ba 100644
--- a/MainApp.cpp
+++ b/MainApp.cpp
@@ -273,6 +273,10 @@ void MainApp::textAdded(const QString & text)
{
mutex.lock();
lineEdit.setText(lineEdit.text() + text);
+
+ // be sure any text is visible on initial input
+ lineEdit.setVisible(true);
+
mutex.unlock();
}