mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
ignore enter keypress when completion is selected
This commit is contained in:
parent
aed8d23aca
commit
254b7549eb
1 changed files with 7 additions and 6 deletions
|
@ -259,9 +259,10 @@ FilteredTextEdit::keyPressEvent(QKeyEvent *event)
|
|||
// No completion to select, do normal behavior
|
||||
completer_->popup()->hide();
|
||||
emoji_popup_open_ = false;
|
||||
}
|
||||
else
|
||||
} else {
|
||||
event->ignore();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (!(event->modifiers() & Qt::ShiftModifier)) {
|
||||
|
|
Loading…
Reference in a new issue