From 4923549fdffbc2400c5f3929da11721babb75e29 Mon Sep 17 00:00:00 2001 From: James Upjohn Date: Sat, 25 Feb 2023 03:22:23 +1300 Subject: [PATCH] fix: update emote picker labels to use `7TV` naming (#4405) --- src/widgets/dialogs/EmotePopup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/dialogs/EmotePopup.cpp b/src/widgets/dialogs/EmotePopup.cpp index 5d6b5bf3..c81abd04 100644 --- a/src/widgets/dialogs/EmotePopup.cpp +++ b/src/widgets/dialogs/EmotePopup.cpp @@ -493,7 +493,7 @@ void EmotePopup::filterTwitchEmotes(std::shared_ptr searchChannel, } if (!seventvGlobalEmotes.empty()) { - addEmotes(*searchChannel, seventvGlobalEmotes, "SevenTV (Global)", + addEmotes(*searchChannel, seventvGlobalEmotes, "7TV (Global)", MessageElementFlag::SevenTVEmote); } @@ -522,7 +522,7 @@ void EmotePopup::filterTwitchEmotes(std::shared_ptr searchChannel, } if (!seventvChannelEmotes.empty()) { - addEmotes(*searchChannel, seventvChannelEmotes, "SevenTV (Channel)", + addEmotes(*searchChannel, seventvChannelEmotes, "7TV (Channel)", MessageElementFlag::SevenTVEmote); } }