mirror of https://github.com/procxx/kepka.git
parent
73ce722147
commit
87c07a13a1
|
@ -622,7 +622,7 @@ bool HistoryPhoto::dataLoaded() const {
|
|||
}
|
||||
|
||||
bool HistoryPhoto::needInfoDisplay() const {
|
||||
return (_data->uploading() || _parent->isUnderCursor());
|
||||
return (_parent->data()->id < 0 || _parent->isUnderCursor());
|
||||
}
|
||||
|
||||
void HistoryPhoto::validateGroupedCache(
|
||||
|
@ -2725,7 +2725,7 @@ bool HistoryGif::dataLoaded() const {
|
|||
}
|
||||
|
||||
bool HistoryGif::needInfoDisplay() const {
|
||||
return (_data->uploading() || _parent->isUnderCursor());
|
||||
return (_parent->data()->id < 0 || _parent->isUnderCursor());
|
||||
}
|
||||
|
||||
HistorySticker::HistorySticker(
|
||||
|
@ -2837,7 +2837,9 @@ void HistorySticker::draw(Painter &p, const QRect &r, TextSelection selection, T
|
|||
if (!inWebPage) {
|
||||
auto fullRight = usex + usew;
|
||||
auto fullBottom = height();
|
||||
_parent->drawInfo(p, fullRight, fullBottom, usex * 2 + usew, selected, InfoDisplayType::Background);
|
||||
if (needInfoDisplay()) {
|
||||
_parent->drawInfo(p, fullRight, fullBottom, usex * 2 + usew, selected, InfoDisplayType::Background);
|
||||
}
|
||||
if (via || reply) {
|
||||
int rectw = width() - usew - st::msgReplyPadding.left();
|
||||
int recth = st::msgReplyPadding.top() + st::msgReplyPadding.bottom();
|
||||
|
@ -2952,6 +2954,10 @@ TextState HistorySticker::textState(QPoint point, StateRequest request) const {
|
|||
return result;
|
||||
}
|
||||
|
||||
bool HistorySticker::needInfoDisplay() const {
|
||||
return (_parent->data()->id < 0 || _parent->isUnderCursor());
|
||||
}
|
||||
|
||||
int HistorySticker::additionalWidth(const HistoryMessageVia *via, const HistoryMessageReply *reply) const {
|
||||
int result = 0;
|
||||
if (via) {
|
||||
|
|
|
@ -520,6 +520,7 @@ private:
|
|||
QSize countOptimalSize() override;
|
||||
QSize countCurrentSize(int newWidth) override;
|
||||
|
||||
bool needInfoDisplay() const;
|
||||
int additionalWidth(const HistoryMessageVia *via, const HistoryMessageReply *reply) const;
|
||||
int additionalWidth() const;
|
||||
|
||||
|
|
Loading…
Reference in New Issue