diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-03-28 13:09:16 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-03-28 13:09:16 +0300 |
commit | 945784db112078bfecdc343de7821ebceb5ee33e (patch) | |
tree | ab437e1b6c66a62c83a47b568e39347287ca086a /include | |
parent | Update translation files (diff) | |
download | nheko-945784db112078bfecdc343de7821ebceb5ee33e.tar.xz |
Correctly propagate focusOut event on TextEdit
Diffstat (limited to 'include')
-rw-r--r-- | include/TextInputWidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/TextInputWidget.h b/include/TextInputWidget.h index 95262722..927187dd 100644 --- a/include/TextInputWidget.h +++ b/include/TextInputWidget.h @@ -84,7 +84,7 @@ protected: void focusOutEvent(QFocusEvent *event) override { popup_.hide(); - QWidget::focusOutEvent(event); + QTextEdit::focusOutEvent(event); } private: |