Fixed overriding all link handlers in messages with reply.
This commit is contained in:
parent
a0fb81b871
commit
f539912405
|
@ -1719,7 +1719,8 @@ void Message::clickHandlerPressedChanged(
|
|||
toggleTopicButtonRipple(pressed);
|
||||
} else if (_viewButton) {
|
||||
_viewButton->checkLink(handler, pressed);
|
||||
} else if (const auto reply = displayedReply()) {
|
||||
} else if (const auto reply = displayedReply();
|
||||
reply && (handler == reply->replyToLink())) {
|
||||
toggleReplyRipple(pressed);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue