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(); tshift -= _attach->height();
} }
const auto rect = QRect( const auto rect = hasSponsoredMedia
inner.left(), ? QRect(
tshift, inner.left(),
paintw, inner.top(),
inner.top() + inner.height() - tshift); _attach->width(),
_attach->height())
: QRect(
inner.left(),
tshift,
paintw,
inner.top() + inner.height() - tshift);
if (rect.contains(point)) { if (rect.contains(point)) {
const auto attachLeft = rtl() const auto attachLeft = rtl()
? width() - (inner.left() - bubble.left()) - _attach->width() ? width() - (inner.left() - bubble.left()) - _attach->width()