fix: only clear reply target when inline replying (#5586)

This commit is contained in:
nerix
2024-09-08 22:05:15 +02:00
committed by GitHub
parent 336536c761
commit 1240bd53b5
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -1223,7 +1223,10 @@ void SplitInput::clearInput()
this->currMsg_ = "";
this->ui_.textEdit->setText("");
this->ui_.textEdit->moveCursor(QTextCursor::Start);
this->clearReplyTarget();
if (this->enableInlineReplying_)
{
this->clearReplyTarget();
}
}
void SplitInput::clearReplyTarget()