From d60d506c6ca1b755d9a7423ee634aa25a3e98561 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Sat, 25 May 2024 17:55:29 +0200 Subject: [PATCH] Fix indentation errors in ClickBox.kt Signed-off-by: Username404-59 --- .../fr/username404/snowygui/gui/elements/ClickBox.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/src/main/kotlin/fr/username404/snowygui/gui/elements/ClickBox.kt b/common/src/main/kotlin/fr/username404/snowygui/gui/elements/ClickBox.kt index eaa2803..15e2e5b 100644 --- a/common/src/main/kotlin/fr/username404/snowygui/gui/elements/ClickBox.kt +++ b/common/src/main/kotlin/fr/username404/snowygui/gui/elements/ClickBox.kt @@ -94,11 +94,11 @@ class ClickBox( vertex(x + width + inclination, y + height, 0.0).colorEnd() tessellator.end() - colorShader() - begin(VertexFormat.Mode.DEBUG_LINES, DefaultVertexFormat.POSITION_COLOR) - vertex(x + inclination, y + height, 0.0).colorEnd(Colors.WHITE_LINES.hexValue) - vertex(x + width, y + height, 0.0).colorEnd(Colors.WHITE_LINES.hexValue) - tessellator.end() + colorShader() + begin(VertexFormat.Mode.DEBUG_LINES, DefaultVertexFormat.POSITION_COLOR) + vertex(x + inclination, y + height, 0.0).colorEnd(Colors.WHITE_LINES.hexValue) + vertex(x + width, y + height, 0.0).colorEnd(Colors.WHITE_LINES.hexValue) + tessellator.end() } endDraw()