diff options
author | Sergey Starosek <sergey.starosek@gmail.com> | 2014-01-15 22:35:15 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-16 09:12:59 +0700 |
commit | 4659b594f09d30e77173a9fe329155be0c1dc1c7 (patch) | |
tree | 7cdcca0f63f88a09c1caed83a2510ce28edb0815 /qt-ui/tagwidget.cpp | |
parent | 88f3df5c790c0b2f70d4ba452c41fb85cfcd020d (diff) | |
download | subsurface-4659b594f09d30e77173a9fe329155be0c1dc1c7.tar.gz |
Emit textChanged() signal on completion selection
Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/tagwidget.cpp')
-rw-r--r-- | qt-ui/tagwidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/tagwidget.cpp b/qt-ui/tagwidget.cpp index 7ec0472ea..4aa997c4c 100644 --- a/qt-ui/tagwidget.cpp +++ b/qt-ui/tagwidget.cpp @@ -146,6 +146,7 @@ void TagWidget::completionSelected(QString completion) { setText(completion.append(", ")); setCursorPosition(text().length()); } + emit(textChanged()); } void TagWidget::setCursorPosition(int position) { |