Fixed overriding all link handlers in messages with reply.

This commit is contained in:
23rd 2023-08-15 09:46:32 +03:00
parent a0fb81b871
commit f539912405
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
}