diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/input/TextInputPanel.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/input/TextInputPanel.kt index 8c66f1ac3..f8876b02a 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/input/TextInputPanel.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/input/TextInputPanel.kt @@ -41,7 +41,7 @@ open class TextInputPanel( x: Float = 0f, y: Float = 0f, width: Float = 60f, - height: Float = 15f, + height: Float = 11f, ) : EditablePanel(screen, parent, x, y, width, height) { private data class TextSelection(val cursor: Int, val shift: Int) { val isLeft get() = shift < 0 @@ -159,7 +159,7 @@ open class TextInputPanel( init { scissor = true - dockPadding = DockProperty(3f, 3f, 3f, 3f) + dockPadding = DockProperty(3f, 2f, 3f, 2f) } private var oldText = ArrayList()