mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fix: only clear reply target when inline replying (#5586)
This commit is contained in:
parent
336536c761
commit
1240bd53b5
|
@ -24,7 +24,7 @@
|
|||
- Minor: Improve appearance of reply button. (#5491)
|
||||
- Minor: Introduce HTTP API for plugins. (#5383, #5492, #5494)
|
||||
- Minor: Support more Firefox variants for incognito link opening. (#5503)
|
||||
- Minor: Replying to a message will now display the message being replied to. (#4350, #5519)
|
||||
- Minor: Replying to a message will now display the message being replied to. (#4350, #5519, #5586)
|
||||
- Minor: Links can now have prefixes and suffixes such as parentheses. (#5486, #5515)
|
||||
- Minor: Added support for scrolling in splits with touchscreen panning gestures. (#5524)
|
||||
- Minor: Removed experimental IRC support. (#5547)
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue