Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1021 Automatic Ctrl-Backspace on Evade for Aero #5043

Merged
merged 2 commits into from
Jan 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions megamek/src/megamek/client/ui/swing/MovementDisplay.java
Original file line number Diff line number Diff line change
Expand Up @@ -5090,6 +5090,7 @@ public synchronized void actionPerformed(ActionEvent ev) {
ready();
}
} else if (actionCmd.equals(MoveCommand.MOVE_EVADE_AERO.getCmd())) {
removeIllegalSteps();
addStepToMovePath(MoveStepType.EVADE);
setEvadeAeroEnabled(false);
} else if (actionCmd.equals(MoveCommand.MOVE_ROLL.getCmd())) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public class KeyBindingsOverlay extends AbstractBoardViewOverlay {
private static final List<KeyCommandBind> BINDS_MOVE = Arrays.asList(
KeyCommandBind.TOGGLE_MOVEMODE,
KeyCommandBind.UNDO_LAST_STEP,
KeyCommandBind.UNDO_ILLEGAL_STEPS,
KeyCommandBind.TOGGLE_CONVERSIONMODE,
KeyCommandBind.DONE_NO_ACTION
);
Expand Down
Loading