From b170c8fb0d4e6224bd3dcaeeb78ded81a010e651 Mon Sep 17 00:00:00 2001 From: Anna Date: Fri, 11 Feb 2022 01:22:49 -0500 Subject: [PATCH] fix: reduce spacing at bottom of chat --- ChatTwo/Ui/ChatLog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChatTwo/Ui/ChatLog.cs b/ChatTwo/Ui/ChatLog.cs index 228b047..2183e24 100755 --- a/ChatTwo/Ui/ChatLog.cs +++ b/ChatTwo/Ui/ChatLog.cs @@ -195,7 +195,7 @@ internal sealed class ChatLog : IUiComponent { var lineHeight = ImGui.CalcTextSize("A").Y; return ImGui.GetContentRegionAvail().Y - lineHeight * 2 - - ImGui.GetStyle().ItemSpacing.Y * 4; + - ImGui.GetStyle().ItemSpacing.Y * 2.5f; } private unsafe ImGuiViewport* _lastViewport;