diff options
Diffstat (limited to 'MainApp.cpp')
-rw-r--r-- | MainApp.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MainApp.cpp b/MainApp.cpp index a5a3865..6689507 100644 --- a/MainApp.cpp +++ b/MainApp.cpp @@ -288,6 +288,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(); } |