mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Implement the "Reload channel emotes" menu option
This commit is contained in:
parent
c81df989c5
commit
ac40bede37
1 changed files with 6 additions and 0 deletions
|
@ -392,6 +392,12 @@ void SplitHeader::menuMoveSplit()
|
|||
|
||||
void SplitHeader::menuReloadChannelEmotes()
|
||||
{
|
||||
auto channel = this->split->getChannel();
|
||||
TwitchChannel *twitchChannel = dynamic_cast<TwitchChannel *>(channel.get());
|
||||
|
||||
if (twitchChannel) {
|
||||
twitchChannel->reloadChannelEmotes();
|
||||
}
|
||||
}
|
||||
|
||||
void SplitHeader::menuManualReconnect()
|
||||
|
|
Loading…
Reference in a new issue