From 075a7c5af035eac14be095b352c62acd4125f433 Mon Sep 17 00:00:00 2001 From: nerix Date: Sun, 21 Jan 2024 11:57:14 +0100 Subject: [PATCH] Chatters from recent-messages are now tab-completable (#5116) --- CHANGELOG.md | 1 + src/providers/twitch/TwitchChannel.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23e175be8..b82cbc268 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ - Minor: Improved Streamlink documentation in the settings dialog. (#5076) - Minor: Normalized the input padding between light & dark themes. (#5095) - Minor: Add `--activate ` (or `-a`) command line option to activate or add a Twitch channel. (#5111) +- Minor: Chatters from recent-messages are now added to autocompletion. (#5116) - Bugfix: Fixed an issue where certain emojis did not send to Twitch chat correctly. (#4840) - Bugfix: Fixed capitalized channel names in log inclusion list not being logged. (#4848) - Bugfix: Trimmed custom streamlink paths on all platforms making sure you don't accidentally add spaces at the beginning or end of its path. (#4834) diff --git a/src/providers/twitch/TwitchChannel.cpp b/src/providers/twitch/TwitchChannel.cpp index 518e21b69..704ecfa33 100644 --- a/src/providers/twitch/TwitchChannel.cpp +++ b/src/providers/twitch/TwitchChannel.cpp @@ -1214,6 +1214,8 @@ void TwitchChannel::loadRecentMessages() { msgs.push_back(msg); } + + tc->addRecentChatter(msg->displayName); } getApp()->twitch->mentionsChannel->fillInMissingMessages(msgs);