Correctly propagate focusOut event on TextEdit

This commit is contained in:
Konstantinos Sideris 2018-03-28 13:09:16 +03:00
parent 327e60af01
commit 945784db11
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ protected:
void focusOutEvent(QFocusEvent *event) override
{
popup_.hide();
QWidget::focusOutEvent(event);
QTextEdit::focusOutEvent(event);
}
private: