Skip to content

Commit

Permalink
whooops
Browse files Browse the repository at this point in the history
  • Loading branch information
cairthenn committed Apr 27, 2019
1 parent ce5db33 commit 8b15ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchChatVideo/ChatHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class Line

public Line(float x, float y, float height, List<Drawable> dl)
{
Height = Math.Min(height, MinimumLineHeight);
Height = Math.Max(height, MinimumLineHeight);
OffsetX = x;
OffsetY = y;
Drawables = dl;
Expand Down

0 comments on commit 8b15ebb

Please sign in to comment.