mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 06:26:18 +00:00
Forbid to archive Telegram Notifications.
This commit is contained in:
@@ -53,6 +53,7 @@ public:
|
||||
|
||||
private:
|
||||
bool showInfo();
|
||||
bool showToggleArchived();
|
||||
void addPinToggle();
|
||||
void addInfo();
|
||||
//void addSearch();
|
||||
@@ -194,6 +195,17 @@ bool Filler::showInfo() {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Filler::showToggleArchived() {
|
||||
if (_source != PeerMenuSource::ChatsList) {
|
||||
return false;
|
||||
} else if (!_peer->isNotificationsUser()) {
|
||||
return true;
|
||||
} else if (const auto history = _peer->owner().historyLoaded(_peer)) {
|
||||
return (history->folder() != nullptr);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void Filler::addPinToggle() {
|
||||
auto peer = _peer;
|
||||
auto isPinned = false;
|
||||
@@ -504,7 +516,7 @@ void Filler::fill() {
|
||||
} else if (const auto channel = _peer->asChannel()) {
|
||||
addChannelActions(channel);
|
||||
}
|
||||
if (_source == PeerMenuSource::ChatsList) {
|
||||
if (showToggleArchived()) {
|
||||
addToggleArchive();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user