diff options
Diffstat (limited to 'src/main/kotlin/cc/woverflow/chatting/gui/components/SearchButton.kt')
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/gui/components/SearchButton.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/cc/woverflow/chatting/gui/components/SearchButton.kt b/src/main/kotlin/cc/woverflow/chatting/gui/components/SearchButton.kt index a0f875e..71633a3 100644 --- a/src/main/kotlin/cc/woverflow/chatting/gui/components/SearchButton.kt +++ b/src/main/kotlin/cc/woverflow/chatting/gui/components/SearchButton.kt @@ -10,7 +10,8 @@ import net.minecraft.client.renderer.GlStateManager import net.minecraft.util.ResourceLocation class SearchButton : - CleanButton(3993935, { UResolution.scaledWidth - 14 }, { UResolution.scaledHeight - 27 }, 12, 12, "") { + CleanButton(3993935, { UResolution.scaledWidth - 14 }, { UResolution.scaledHeight - 27 }, 12, 12, "", + { RenderType.NONE }) { val inputField = SearchTextField() private var chatBox = false |