Display sticker date on mouse over.

Fixes #3636.
This commit is contained in:
John Preston 2018-06-06 12:46:17 +03:00
parent 73ce722147
commit 87c07a13a1
2 changed files with 10 additions and 3 deletions

View File

@ -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) {

View File

@ -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;