Other occurences

This commit is contained in:
NepNep21 2023-12-19 21:44:19 -03:00
parent 7c57292c6d
commit 1295e84020
No known key found for this signature in database
GPG key ID: 60372BB5B7534B09
2 changed files with 3 additions and 3 deletions

View file

@ -941,9 +941,9 @@ InputBar::command(const QString &command, QString args)
} else if (command == QLatin1String("converttoroom")) {
utils::removeDirectFromRoom(this->room->roomId());
} else if (command == QLatin1String("ignore")) {
this->setArgIgnored(args, true);
this->toggleIgnore(args, true);
} else if (command == QLatin1String("unignore")) {
this->setArgIgnored(args, false);
this->toggleIgnore(args, false);
} else {
return false;
}

View file

@ -283,7 +283,7 @@ private:
void updateTextContentProperties(const QString &t);
void setArgIgnored(const QString &user, const bool ignored);
void toggleIgnore(const QString &user, const bool ignored);
QTimer typingRefresh_;
QTimer typingTimeout_;