mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
clear the list of joined/parted users
This commit is contained in:
parent
0fed9ca5d2
commit
9fc791a440
2 changed files with 8 additions and 4 deletions
|
@ -232,6 +232,7 @@ void TwitchChannel::addJoinedUser(const QString &user)
|
||||||
|
|
||||||
this->addMessage(messages::Message::createSystemMessage("Users joined: " +
|
this->addMessage(messages::Message::createSystemMessage("Users joined: " +
|
||||||
this->joinedUsers.join(", ")));
|
this->joinedUsers.join(", ")));
|
||||||
|
this->joinedUsers.clear();
|
||||||
this->joinedUsersMergeQueued = false;
|
this->joinedUsersMergeQueued = false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -258,6 +259,7 @@ void TwitchChannel::addPartedUser(const QString &user)
|
||||||
|
|
||||||
this->addMessage(messages::Message::createSystemMessage("Users parted: " +
|
this->addMessage(messages::Message::createSystemMessage("Users parted: " +
|
||||||
this->partedUsers.join(", ")));
|
this->partedUsers.join(", ")));
|
||||||
|
this->partedUsers.clear();
|
||||||
|
|
||||||
this->partedUsersMergeQueued = false;
|
this->partedUsersMergeQueued = false;
|
||||||
});
|
});
|
||||||
|
|
|
@ -34,10 +34,12 @@ BehaviourPage::BehaviourPage()
|
||||||
{
|
{
|
||||||
form->addRow("Window:", this->createCheckBox(WINDOW_TOPMOST, app->settings->windowTopMost));
|
form->addRow("Window:", this->createCheckBox(WINDOW_TOPMOST, app->settings->windowTopMost));
|
||||||
form->addRow("Messages:", this->createCheckBox(INPUT_EMPTY, app->settings->hideEmptyInput));
|
form->addRow("Messages:", this->createCheckBox(INPUT_EMPTY, app->settings->hideEmptyInput));
|
||||||
form->addRow("", this->createCheckBox("Show which users joined the channel",
|
form->addRow(
|
||||||
app->settings->showJoins));
|
"", this->createCheckBox("Show which users joined the channel (up to 1000 chatters)",
|
||||||
form->addRow("", this->createCheckBox("Show which users parted the channel",
|
app->settings->showJoins));
|
||||||
app->settings->showParts));
|
form->addRow(
|
||||||
|
"", this->createCheckBox("Show which users parted the channel (up to 1000 chatters)",
|
||||||
|
app->settings->showParts));
|
||||||
form->addRow("Pause chat:",
|
form->addRow("Pause chat:",
|
||||||
this->createCheckBox(PAUSE_HOVERING, app->settings->pauseChatHover));
|
this->createCheckBox(PAUSE_HOVERING, app->settings->pauseChatHover));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue