From e2bc64a65e248ec4b96c486e00f2c218586caa17 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 6 Jun 2022 01:16:40 +0200 Subject: [PATCH] Overlap edge of text box with send button --- r5dev/sdklauncher/basepanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/sdklauncher/basepanel.cpp b/r5dev/sdklauncher/basepanel.cpp index 8845491a..50635482 100644 --- a/r5dev/sdklauncher/basepanel.cpp +++ b/r5dev/sdklauncher/basepanel.cpp @@ -457,7 +457,7 @@ void CUIBaseSurface::Init() this->m_ConsoleCommandTextBox = new UIX::UIXTextBox(); - this->m_ConsoleCommandTextBox->SetSize({ 350, 18 }); + this->m_ConsoleCommandTextBox->SetSize({ 351, 18 }); this->m_ConsoleCommandTextBox->SetLocation({ 0, 149 }); this->m_ConsoleCommandTextBox->SetTabIndex(0); this->m_ConsoleCommandTextBox->SetReadOnly(false);