mirror of https://github.com/procxx/kepka.git
Always display name in media messages in groups.
This commit is contained in:
parent
3c18532612
commit
2becd307df
|
@ -145,9 +145,6 @@ public:
|
||||||
virtual QMargins bubbleMargins() const {
|
virtual QMargins bubbleMargins() const {
|
||||||
return QMargins();
|
return QMargins();
|
||||||
}
|
}
|
||||||
virtual bool hideFromName() const {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
virtual bool hideForwardedFrom() const {
|
virtual bool hideForwardedFrom() const {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -161,17 +161,14 @@ public:
|
||||||
if (!_caption.isEmpty()) {
|
if (!_caption.isEmpty()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (_parent->viaBot()) {
|
if (auto message = _parent->toHistoryMessage()) {
|
||||||
return true;
|
return message->displayFromName();
|
||||||
}
|
}
|
||||||
return (_parent->Has<HistoryMessageForwarded>() || _parent->Has<HistoryMessageReply>());
|
return false;
|
||||||
}
|
}
|
||||||
bool customInfoLayout() const override {
|
bool customInfoLayout() const override {
|
||||||
return _caption.isEmpty();
|
return _caption.isEmpty();
|
||||||
}
|
}
|
||||||
bool hideFromName() const override {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
bool skipBubbleTail() const override {
|
bool skipBubbleTail() const override {
|
||||||
return isBubbleBottom() && _caption.isEmpty();
|
return isBubbleBottom() && _caption.isEmpty();
|
||||||
}
|
}
|
||||||
|
@ -251,17 +248,14 @@ public:
|
||||||
if (!_caption.isEmpty()) {
|
if (!_caption.isEmpty()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (_parent->viaBot()) {
|
if (auto message = _parent->toHistoryMessage()) {
|
||||||
return true;
|
return message->displayFromName();
|
||||||
}
|
}
|
||||||
return (_parent->Has<HistoryMessageForwarded>() || _parent->Has<HistoryMessageReply>());
|
return false;
|
||||||
}
|
}
|
||||||
bool customInfoLayout() const override {
|
bool customInfoLayout() const override {
|
||||||
return _caption.isEmpty();
|
return _caption.isEmpty();
|
||||||
}
|
}
|
||||||
bool hideFromName() const override {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
bool skipBubbleTail() const override {
|
bool skipBubbleTail() const override {
|
||||||
return isBubbleBottom() && _caption.isEmpty();
|
return isBubbleBottom() && _caption.isEmpty();
|
||||||
}
|
}
|
||||||
|
@ -480,17 +474,14 @@ public:
|
||||||
if (!_caption.isEmpty()) {
|
if (!_caption.isEmpty()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (_parent->viaBot()) {
|
if (auto message = _parent->toHistoryMessage()) {
|
||||||
return true;
|
return message->displayFromName();
|
||||||
}
|
}
|
||||||
return (_parent->Has<HistoryMessageForwarded>() || _parent->Has<HistoryMessageReply>());
|
return false;
|
||||||
}
|
}
|
||||||
bool customInfoLayout() const override {
|
bool customInfoLayout() const override {
|
||||||
return _caption.isEmpty();
|
return _caption.isEmpty();
|
||||||
}
|
}
|
||||||
bool hideFromName() const override {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
bool skipBubbleTail() const override {
|
bool skipBubbleTail() const override {
|
||||||
return isBubbleBottom() && _caption.isEmpty();
|
return isBubbleBottom() && _caption.isEmpty();
|
||||||
}
|
}
|
||||||
|
@ -884,10 +875,10 @@ public:
|
||||||
if (!_title.isEmpty() || !_description.isEmpty()) {
|
if (!_title.isEmpty() || !_description.isEmpty()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (_parent->viaBot()) {
|
if (auto message = _parent->toHistoryMessage()) {
|
||||||
return true;
|
return message->displayFromName();
|
||||||
}
|
}
|
||||||
return (_parent->Has<HistoryMessageForwarded>() || _parent->Has<HistoryMessageReply>());
|
return false;
|
||||||
}
|
}
|
||||||
bool customInfoLayout() const override {
|
bool customInfoLayout() const override {
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -60,8 +60,7 @@ public:
|
||||||
bool displayFromName() const {
|
bool displayFromName() const {
|
||||||
if (!hasFromName()) return false;
|
if (!hasFromName()) return false;
|
||||||
if (isAttachedToPrevious()) return false;
|
if (isAttachedToPrevious()) return false;
|
||||||
|
return true;
|
||||||
return (!emptyText() || !_media || !_media->isDisplayed() || Has<HistoryMessageReply>() || Has<HistoryMessageForwarded>() || viaBot() || !_media->hideFromName());
|
|
||||||
}
|
}
|
||||||
bool displayEditedBadge(bool hasViaBotOrInlineMarkup) const;
|
bool displayEditedBadge(bool hasViaBotOrInlineMarkup) const;
|
||||||
bool uploading() const {
|
bool uploading() const {
|
||||||
|
|
Loading…
Reference in New Issue