mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-08-31 06:35:14 +00:00
metalang tags gen fixed, links parsing in rich text fixed, custom keyboard hiding saved in history
This commit is contained in:
@@ -126,15 +126,14 @@ public:
|
||||
|
||||
class StackItemHistory : public StackItem {
|
||||
public:
|
||||
StackItemHistory(PeerData *peer, MsgId msgId, QList<MsgId> replyReturns, bool kbWasHidden) : StackItem(peer),
|
||||
msgId(msgId), replyReturns(replyReturns), kbWasHidden(kbWasHidden) {
|
||||
StackItemHistory(PeerData *peer, MsgId msgId, QList<MsgId> replyReturns) : StackItem(peer),
|
||||
msgId(msgId), replyReturns(replyReturns) {
|
||||
}
|
||||
StackItemType type() const {
|
||||
return HistoryStackItem;
|
||||
}
|
||||
MsgId msgId;
|
||||
QList<MsgId> replyReturns;
|
||||
bool kbWasHidden;
|
||||
};
|
||||
|
||||
class StackItemProfile : public StackItem {
|
||||
|
Reference in New Issue
Block a user