fix: Show Emoji Completion in IRC Channels (#4021)

This commit is contained in:
nerix
2022-09-30 22:59:52 +02:00
committed by GitHub
parent d9e17e69cf
commit 9554b83c1a
3 changed files with 4 additions and 4 deletions
+1 -2
View File
@@ -661,8 +661,7 @@ void SplitInput::updateCompletionPopup()
{
auto channel = this->split_->getChannel().get();
auto tc = dynamic_cast<TwitchChannel *>(channel);
bool showEmoteCompletion =
channel->isTwitchChannel() && getSettings()->emoteCompletionWithColon;
bool showEmoteCompletion = getSettings()->emoteCompletionWithColon;
bool showUsernameCompletion =
tc && getSettings()->showUsernameCompletionMenu;
if (!showEmoteCompletion && !showUsernameCompletion)