summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-03-28 13:09:16 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-03-28 13:09:16 +0300
commit945784db112078bfecdc343de7821ebceb5ee33e (patch)
treeab437e1b6c66a62c83a47b568e39347287ca086a /include
parentUpdate translation files (diff)
downloadnheko-945784db112078bfecdc343de7821ebceb5ee33e.tar.xz
Correctly propagate focusOut event on TextEdit
Diffstat (limited to 'include')
-rw-r--r--include/TextInputWidget.h2
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: