diff options
author | Ethan <git@ethanlibs.co> | 2022-05-06 16:20:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-06 16:20:43 -0400 |
commit | 8dcd0270b25df0437fd583b8221f59943cfe4372 (patch) | |
tree | 24d497314405a8c3487db7d1fe0601530d9eacec /src/main/kotlin/cc/woverflow/chatting/gui/components/ScreenshotButton.kt | |
parent | a1498a9b8efe31841441a6f2152937dddf75a474 (diff) | |
parent | b96de6230299c751d0d3953c6546992efccb1111 (diff) | |
download | Chatting-8dcd0270b25df0437fd583b8221f59943cfe4372.tar.gz Chatting-8dcd0270b25df0437fd583b8221f59943cfe4372.tar.bz2 Chatting-8dcd0270b25df0437fd583b8221f59943cfe4372.zip |
Merge pull request #7 from Moo2meenn/fix-buttons-height
Fix buttons height
Diffstat (limited to 'src/main/kotlin/cc/woverflow/chatting/gui/components/ScreenshotButton.kt')
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/gui/components/ScreenshotButton.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/cc/woverflow/chatting/gui/components/ScreenshotButton.kt b/src/main/kotlin/cc/woverflow/chatting/gui/components/ScreenshotButton.kt index 9fc5e8d..b22673b 100644 --- a/src/main/kotlin/cc/woverflow/chatting/gui/components/ScreenshotButton.kt +++ b/src/main/kotlin/cc/woverflow/chatting/gui/components/ScreenshotButton.kt @@ -11,7 +11,7 @@ import net.minecraft.client.renderer.GlStateManager import net.minecraft.util.ResourceLocation class ScreenshotButton : - CleanButton(448318, { UResolution.scaledWidth - 42 }, { UResolution.scaledHeight - 27 }, 12, 12, "", + CleanButton(448318, { UResolution.scaledWidth - 28 }, { UResolution.scaledHeight - 26 }, 12, 12, "", { RenderType.NONE }) { override fun onMousePress() { |