diff options
author | Linnea Gräf <nea@nea.moe> | 2025-01-12 15:18:32 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-12 15:18:32 +0100 |
commit | db269a6bfb53755efe9b12e0d4e1152adba5ad5b (patch) | |
tree | 7d50e8e1aa021c386e02ea212104742a1563acec /src/main/kotlin/features/inventory | |
parent | f828a6c9ec9d7219f58d11a5c260ae3897500f69 (diff) | |
download | Firmament-db269a6bfb53755efe9b12e0d4e1152adba5ad5b.tar.gz Firmament-db269a6bfb53755efe9b12e0d4e1152adba5ad5b.tar.bz2 Firmament-db269a6bfb53755efe9b12e0d4e1152adba5ad5b.zip |
fix: Incorrect scissors in storage overlay
Diffstat (limited to 'src/main/kotlin/features/inventory')
-rw-r--r-- | src/main/kotlin/features/inventory/storageoverlay/StorageOverlayScreen.kt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/kotlin/features/inventory/storageoverlay/StorageOverlayScreen.kt b/src/main/kotlin/features/inventory/storageoverlay/StorageOverlayScreen.kt index 07a96c2..633a8fe 100644 --- a/src/main/kotlin/features/inventory/storageoverlay/StorageOverlayScreen.kt +++ b/src/main/kotlin/features/inventory/storageoverlay/StorageOverlayScreen.kt @@ -35,6 +35,7 @@ import moe.nea.firmament.util.mc.FakeSlot import moe.nea.firmament.util.mc.displayNameAccordingToNbt import moe.nea.firmament.util.mc.loreAccordingToNbt import moe.nea.firmament.util.render.drawGuiTexture +import moe.nea.firmament.util.render.enableScissorWithoutTranslation import moe.nea.firmament.util.tr import moe.nea.firmament.util.unformattedString @@ -241,9 +242,9 @@ class StorageOverlayScreen : Screen(Text.literal("")) { fun createScissors(context: DrawContext) { val rect = getScrollPanelInner() - context.enableScissor( - rect.minX, rect.minY, - rect.maxX, rect.maxY + context.enableScissorWithoutTranslation( + rect.minX.toFloat(), rect.minY.toFloat(), + rect.maxX.toFloat(), rect.maxY.toFloat(), ) } |