2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-30 22:16:14 +00:00

Support topic icon display in topic profile.

This commit is contained in:
John Preston
2022-10-18 16:38:43 +04:00
parent fcc4503791
commit df5602d203
26 changed files with 317 additions and 119 deletions

View File

@@ -151,10 +151,11 @@ struct TopicUpdate {
UnreadReactions = (1U << 3),
Notifications = (1U << 4),
Title = (1U << 5),
Icon = (1U << 6),
CloudDraft = (1U << 7),
IconId = (1U << 6),
ColorId = (1U << 7),
CloudDraft = (1U << 8),
LastUsedBit = (1U << 7),
LastUsedBit = (1U << 8),
};
using Flags = base::flags<Flag>;
friend inline constexpr auto is_flag_type(Flag) { return true; }