mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fix ctrl not registering with numlock enter (#834)
This commit is contained in:
parent
69233b77ff
commit
dd8e8ad960
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ void SplitInput::installKeyPressedEvent()
|
|||
}
|
||||
|
||||
event->accept();
|
||||
if (!(event->modifiers() == Qt::ControlModifier))
|
||||
if (!(event->modifiers() & Qt::ControlModifier))
|
||||
{
|
||||
this->currMsg_ = QString();
|
||||
this->ui_.textEdit->setText(QString());
|
||||
|
|
Loading…
Reference in a new issue