2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

scrollTop counted relative to the last scrollTop item, attachedToPrevious messages support added, service messages now display date and unreadbar

This commit is contained in:
John Preston
2016-03-21 21:40:00 +03:00
parent a2f5acdff1
commit 84e67b8ec0
9 changed files with 636 additions and 400 deletions

View File

@@ -1036,8 +1036,11 @@ enum class MTPDmessage_ClientFlag : int32 {
// message needs paint()
f_pending_paint = (1 << 26),
// message is attached to previous one when displaying the history
f_attach_to_previous = (1 << 25),
// update this when adding new client side flags
MIN_FIELD = (1 << 26),
MIN_FIELD = (1 << 25),
};
DEFINE_MTP_CLIENT_FLAGS(MTPDmessage)