Update VManaPool.java

This commit is contained in:
kevlahnota
2025-09-18 06:37:45 +08:00
committed by GitHub
parent 8f5f2059a2
commit 0cab03b96c

View File

@@ -146,12 +146,12 @@ public class VManaPool extends VDisplayArea {
if (h > maxImageHeight) { if (h > maxImageHeight) {
h /= 2; h /= 2;
} }
float w2 = Forge.altZoneTabs && "Horizontal".equalsIgnoreCase(Forge.altZoneTabMode) float w = Forge.altZoneTabs && "Horizontal".equalsIgnoreCase(Forge.altZoneTabMode)
? image.getWidth() * h * 0.7f / image.getHeight() : image.getWidth() * h / image.getHeight(); ? image.getWidth() * h * 0.7f / image.getHeight() : image.getWidth() * h / image.getHeight();
float w = w2;
while (w > getWidth()) { while (w > getWidth()) {
h /= 2; h /= 2;
w = w2; w = Forge.altZoneTabs && "Horizontal".equalsIgnoreCase(Forge.altZoneTabMode)
? image.getWidth() * h * 0.7f / image.getHeight() : image.getWidth() * h / image.getHeight();
} }
float x = (getWidth() - w) / 2; float x = (getWidth() - w) / 2;
float y = gapY + (maxImageHeight - h) / 2; float y = gapY + (maxImageHeight - h) / 2;