2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-03 16:15:13 +00:00

No fast reply and double click reply if selecting.

Also fix messages selection glitch.
This commit is contained in:
John Preston
2018-03-09 00:21:27 +03:00
parent ab8e7897cc
commit 66ac4d6150
12 changed files with 45 additions and 4 deletions

View File

@@ -1390,6 +1390,10 @@ TimeMs MainWidget::highlightStartTime(not_null<const HistoryItem*> item) const {
return _history->highlightStartTime(item);
}
bool MainWidget::historyInSelectionMode() const {
return _history->inSelectionMode();
}
void MainWidget::sendBotCommand(PeerData *peer, UserData *bot, const QString &cmd, MsgId replyTo) {
_history->sendBotCommand(peer, bot, cmd, replyTo);
}