From b76c67f30945ef276cb7b6d6602f534cc45edc8e Mon Sep 17 00:00:00 2001 From: Anthony Calosa Date: Mon, 7 Jul 2025 12:08:10 +0800 Subject: [PATCH] fix comment --- forge-gui-mobile/src/forge/adventure/scene/UIScene.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-gui-mobile/src/forge/adventure/scene/UIScene.java b/forge-gui-mobile/src/forge/adventure/scene/UIScene.java index 564d81571d7..e0567503e71 100644 --- a/forge-gui-mobile/src/forge/adventure/scene/UIScene.java +++ b/forge-gui-mobile/src/forge/adventure/scene/UIScene.java @@ -385,7 +385,7 @@ public class UIScene extends Scene { if (KeyBinding.Down.isPressed(keycode, !(stage.getKeyboardFocus() instanceof TextField)) || KeyBinding.Down.isPressed(keycode, Input.Keys.S != keycode)) selectNextDown(); - //Allow letter W for TextField since this is binded on down keys + //Allow letter W for TextField since this is binded on up keys if (KeyBinding.Up.isPressed(keycode, !(stage.getKeyboardFocus() instanceof TextField)) || KeyBinding.Up.isPressed(keycode, Input.Keys.W != keycode)) selectNextUp();