diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-10-10 03:34:06 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-10-10 07:47:37 -0700 |
commit | b7a28bd083843eb35790f351418f6fccdeed9aa4 (patch) | |
tree | 6085c1c666053db0ea5644137c57fd84ea6b0e56 | |
parent | 40e5b9f96ae32b675de845fbcb231478adee697b (diff) |
poi-yelp: fix issue with text input on startup
On startup any initial keyboard input will be invisible to
the application until Search button is clicked. So work around
this for now.
Bug-AGL: SPEC-2872
Change-Id: I9572b250e4bb5fb486927143b7450b3b2e5866c2
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
-rw-r--r-- | MainApp.cpp | 4 |
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(); } |