mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-15 13:47:05 +02:00
Fixed text state of media in sponsored messages.
This commit is contained in:
parent
693eaf9262
commit
6d00165e5a
1 changed files with 11 additions and 5 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue