mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Merge fix
This commit is contained in:
parent
0f0b9798a0
commit
17c7ea63ba
1 changed files with 1 additions and 1 deletions
|
@ -489,7 +489,7 @@ public class AbilityPicker extends JXPanel implements MouseWheelListener {
|
||||||
}
|
}
|
||||||
for (Object obj : choices) {
|
for (Object obj : choices) {
|
||||||
AbilityPickerAction action = (AbilityPickerAction) obj;
|
AbilityPickerAction action = (AbilityPickerAction) obj;
|
||||||
if (Modes.CHOOSE_OPTION_DONE_ID.equals(action.id)) {
|
if (Modes.CHOOSE_OPTION_CANCEL_ID.equals(action.id)) {
|
||||||
action.actionPerformed(null);
|
action.actionPerformed(null);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue