(ItemEvent e)
| 676 | } |
| 677 | |
| 678 | public void itemStateChanged(ItemEvent e) { |
| 679 | if (IJ.isMacOSX()) IJ.wait(100); |
| 680 | Checkbox cb = (Checkbox)checkboxes.elementAt(2); |
| 681 | nointerpolate = cb.getState(); |
| 682 | updateSize(); |
| 683 | } |
| 684 | |
| 685 | void updateSize() { |
| 686 | //double inSpacing = Tools.parseDouble(((TextField)fields.elementAt(0)).getText(),0.0); |
nothing calls this directly
no test coverage detected