summary refs log tree commit diff
path: root/src/TextInputWidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/TextInputWidget.cpp')
-rw-r--r--src/TextInputWidget.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/TextInputWidget.cpp b/src/TextInputWidget.cpp

index 770aaca1..47e239cd 100644 --- a/src/TextInputWidget.cpp +++ b/src/TextInputWidget.cpp
@@ -256,12 +256,13 @@ FilteredTextEdit::keyPressEvent(QKeyEvent *event) case Qt::Key_Enter: if (emoji_popup_open_) { if (!completer_->popup()->currentIndex().isValid()) { - // No completion to select, do normal behavior - completer_->popup()->hide(); - emoji_popup_open_ = false; - } - else - event->ignore(); + // No completion to select, do normal behavior + completer_->popup()->hide(); + emoji_popup_open_ = false; + } else { + event->ignore(); + return; + } } if (!(event->modifiers() & Qt::ShiftModifier)) {