Fixed text state of media in sponsored messages.

This commit is contained in:
23rd 2024-08-14 17:12:00 +03:00 committed by John Preston
parent 693eaf9262
commit 6d00165e5a
1 changed files with 11 additions and 5 deletions

View File

@ -1350,11 +1350,17 @@ TextState WebPage::textState(QPoint point, StateRequest request) const {
tshift -= _attach->height();
}
const auto rect = QRect(
inner.left(),
tshift,
paintw,
inner.top() + inner.height() - tshift);
const auto rect = hasSponsoredMedia
? QRect(
inner.left(),
inner.top(),
_attach->width(),
_attach->height())
: QRect(
inner.left(),
tshift,
paintw,
inner.top() + inner.height() - tshift);
if (rect.contains(point)) {
const auto attachLeft = rtl()
? width() - (inner.left() - bubble.left()) - _attach->width()