mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-07 15:43:55 +02:00
Fixed overriding all link handlers in messages with reply.
This commit is contained in:
parent
a0fb81b871
commit
f539912405
1 changed files with 2 additions and 1 deletions
|
@ -1719,7 +1719,8 @@ void Message::clickHandlerPressedChanged(
|
||||||
toggleTopicButtonRipple(pressed);
|
toggleTopicButtonRipple(pressed);
|
||||||
} else if (_viewButton) {
|
} else if (_viewButton) {
|
||||||
_viewButton->checkLink(handler, pressed);
|
_viewButton->checkLink(handler, pressed);
|
||||||
} else if (const auto reply = displayedReply()) {
|
} else if (const auto reply = displayedReply();
|
||||||
|
reply && (handler == reply->replyToLink())) {
|
||||||
toggleReplyRipple(pressed);
|
toggleReplyRipple(pressed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue