2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-04 00:25:17 +00:00

Replaced Notify::replyMarkupUpdated with Data::MessageUpdate.

This commit is contained in:
23rd
2020-06-27 18:53:30 +03:00
committed by John Preston
parent 6507007086
commit b629e0c43a
9 changed files with 20 additions and 29 deletions

View File

@@ -133,8 +133,9 @@ struct MessageUpdate {
DialogRowRepaint = (1 << 2),
DialogRowRefresh = (1 << 3),
CallAdded = (1 << 4),
ReplyMarkup = (1 << 5),
LastUsedBit = (1 << 4),
LastUsedBit = (1 << 5),
};
using Flags = base::flags<Flag>;
friend inline constexpr auto is_flag_type(Flag) { return true; }