From f11c2ad8a490c8ef91a4a3fae85274f3d2c558e3 Mon Sep 17 00:00:00 2001 From: Anthony Calosa Date: Fri, 26 Sep 2025 08:29:07 +0800 Subject: [PATCH] fix Vertical layout for VManaPool --- forge-gui-mobile/src/forge/screens/match/views/VManaPool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-gui-mobile/src/forge/screens/match/views/VManaPool.java b/forge-gui-mobile/src/forge/screens/match/views/VManaPool.java index 57a13b759d0..b5e601b8dd4 100644 --- a/forge-gui-mobile/src/forge/screens/match/views/VManaPool.java +++ b/forge-gui-mobile/src/forge/screens/match/views/VManaPool.java @@ -70,7 +70,7 @@ public class VManaPool extends VDisplayArea { float x = 0; float y = 0; - if (Forge.isLandscapeMode() && !Forge.altZoneTabs) { + if (Forge.isLandscapeMode() && (!Forge.altZoneTabs || !"Horizontal".equalsIgnoreCase(Forge.altZoneTabMode))) { float labelWidth = visibleWidth / 2; float labelHeight = visibleHeight / 3;