mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Hide category labels when searching in Viewer list (#3719)
This fixed a bug introduced in #3683 Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
parent
3e1e30e4c2
commit
135f914b38
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
||||||
- Minor: Fixed being unable to load Twitch Usercards from the `/mentions` tab. (#3623)
|
- Minor: Fixed being unable to load Twitch Usercards from the `/mentions` tab. (#3623)
|
||||||
- Minor: Add information about the user's operating system in the About page. (#3663)
|
- Minor: Add information about the user's operating system in the About page. (#3663)
|
||||||
- Bugfix: Connection to Twitch PubSub now recovers more reliably. (#3643, #3716)
|
- Bugfix: Connection to Twitch PubSub now recovers more reliably. (#3643, #3716)
|
||||||
- Minor: Added chatter count for each category in viewer list. (#3683)
|
- Minor: Added chatter count for each category in viewer list. (#3683, #3719)
|
||||||
- Minor: Sorted usernames in /vips message to be case-insensitive. (#3696)
|
- Minor: Sorted usernames in /vips message to be case-insensitive. (#3696)
|
||||||
- Minor: Added option to open a user's chat in a new tab from the usercard profile picture context menu. (#3625)
|
- Minor: Added option to open a user's chat in a new tab from the usercard profile picture context menu. (#3625)
|
||||||
- Minor: Fixed tag parsing for consecutive escaped characters. (#3711)
|
- Minor: Fixed tag parsing for consecutive escaped characters. (#3711)
|
||||||
|
|
|
@ -1037,7 +1037,7 @@ void Split::showViewerList()
|
||||||
resultList->clear();
|
resultList->clear();
|
||||||
for (auto &item : results)
|
for (auto &item : results)
|
||||||
{
|
{
|
||||||
if (!labels.contains(item->text()))
|
if (!item->text().contains("("))
|
||||||
{
|
{
|
||||||
resultList->addItem(formatListItemText(item->text()));
|
resultList->addItem(formatListItemText(item->text()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue