CbxFormat and CbxPrecon enablers were the wrong way around in # 17425.

This commit is contained in:
RumbleBBU
2012-10-11 10:52:52 +00:00
parent cee36675ee
commit aff04299cb

View File

@@ -50,8 +50,8 @@ public enum CSubmenuQuestData implements ICDoc {
private final ActionListener preconListener = new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
view.getCbxFormat().setEnabled(view.getRadPreconStart().isSelected());
view.getCbxPrecon().setEnabled(view.getRadRotatingStart().isSelected());
view.getCbxFormat().setEnabled(view.getRadRotatingStart().isSelected());
view.getCbxPrecon().setEnabled(view.getRadPreconStart().isSelected());
view.getBoxPersist().setEnabled(view.getRadRotatingStart().isSelected());
}
};