mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
fix comment
This commit is contained in:
@@ -385,7 +385,7 @@ public class UIScene extends Scene {
|
|||||||
if (KeyBinding.Down.isPressed(keycode, !(stage.getKeyboardFocus() instanceof TextField))
|
if (KeyBinding.Down.isPressed(keycode, !(stage.getKeyboardFocus() instanceof TextField))
|
||||||
|| KeyBinding.Down.isPressed(keycode, Input.Keys.S != keycode))
|
|| KeyBinding.Down.isPressed(keycode, Input.Keys.S != keycode))
|
||||||
selectNextDown();
|
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))
|
if (KeyBinding.Up.isPressed(keycode, !(stage.getKeyboardFocus() instanceof TextField))
|
||||||
|| KeyBinding.Up.isPressed(keycode, Input.Keys.W != keycode))
|
|| KeyBinding.Up.isPressed(keycode, Input.Keys.W != keycode))
|
||||||
selectNextUp();
|
selectNextUp();
|
||||||
|
|||||||
Reference in New Issue
Block a user