Fixed splits staying paused after unfocusing Chatterino in certain configurations (#5504)

This commit is contained in:
Mm2PL
2024-07-13 11:21:27 +02:00
committed by GitHub
parent e2c3823a14
commit 49de421bd8
4 changed files with 18 additions and 0 deletions
+7
View File
@@ -1599,6 +1599,13 @@ void Split::setInputReply(const MessagePtr &reply)
this->input_->setReply(reply);
}
void Split::unpause()
{
this->view_->unpause(PauseReason::KeyboardModifier);
this->view_->unpause(PauseReason::DoubleClick);
// Mouse intentionally left out, we may still have the mouse over the split
}
} // namespace chatterino
QDebug operator<<(QDebug dbg, const chatterino::Split &split)