From 8b15ebbc1888ac315753b0556f8ee15c94fd9830 Mon Sep 17 00:00:00 2001 From: Mark Date: Sat, 27 Apr 2019 15:48:04 -0400 Subject: [PATCH] whooops --- TwitchChatVideo/ChatHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;