diff --git a/TwitchChatVideo/ChatHandler.cs b/TwitchChatVideo/ChatHandler.cs index 6a62647..05913a6 100644 --- a/TwitchChatVideo/ChatHandler.cs +++ b/TwitchChatVideo/ChatHandler.cs @@ -40,7 +40,7 @@ public class Line public Line(float x, float y, float height, List dl) { - Height = Math.Min(height, MinimumLineHeight); + Height = Math.Max(height, MinimumLineHeight); OffsetX = x; OffsetY = y; Drawables = dl;