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

remembering last used inline bots, showing them in mentions dropdown, 9015006 beta

This commit is contained in:
John Preston
2016-01-01 22:48:32 +08:00
parent 85f46cef8c
commit cb2df51af6
15 changed files with 308 additions and 198 deletions

View File

@@ -1349,7 +1349,7 @@ void MainWidget::saveRecentHashtags(const QString &text) {
}
}
if (!found && cRecentWriteHashtags().isEmpty() && cRecentSearchHashtags().isEmpty()) {
Local::readRecentHashtags();
Local::readRecentHashtagsAndBots();
recent = cRecentWriteHashtags();
}
found = true;
@@ -1357,7 +1357,7 @@ void MainWidget::saveRecentHashtags(const QString &text) {
}
if (found) {
cSetRecentWriteHashtags(recent);
Local::writeRecentHashtags();
Local::writeRecentHashtagsAndBots();
}
}