Show Twitch account emotes in EmotePopup (#348)

This commit is contained in:
Nikola Forró
2018-04-15 15:05:12 +02:00
committed by pajlada
parent ca0a42a95f
commit d5097e71a3
3 changed files with 11 additions and 0 deletions
+4
View File
@@ -450,6 +450,10 @@ void EmoteManager::refreshTwitchEmotes(const std::shared_ptr<TwitchAccount> &use
std::string code = emoticon["code"].toString().toStdString();
emoteData.emoteSets[emoteSetString].push_back({id, code});
emoteData.emoteCodes.push_back(code);
util::EmoteData emote = getTwitchEmoteById(emoticon["id"].toInt(),
emoticon["code"].toString());
emoteData.emotes.insert(emoticon["code"].toString(), emote);
}
}
+2
View File
@@ -97,6 +97,8 @@ public:
std::vector<std::string> emoteCodes;
util::EmoteMap emotes;
bool filled = false;
};