Skip to content

Commit

Permalink
Print text of emote if no longer valid
Browse files Browse the repository at this point in the history
  • Loading branch information
lay295 committed Oct 15, 2019
1 parent 3458faa commit 7df63cc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions TwitchDownloaderWPF/PageChatRender.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,11 @@ private SKBitmap DrawMessage(SKBitmap sectionImage, List<SKBitmap> imageList, Re
}
drawPos.X += emoteImage.Width;
}
else
{
//Probably an old emote that was removed
sectionImage = DrawText(sectionImage, fragment.text, messageFont, imageList, ref hasEmote, renderOptions, currentGifEmotes, canvasSize, ref drawPos, true, default_x);
}
}
}

Expand Down

0 comments on commit 7df63cc

Please sign in to comment.