Set true if we want to resize things (default is not resizable)
(boolean resizable)
| 575 | |
| 576 | /** Set true if we want to resize things (default is not resizable) */ |
| 577 | @Override |
| 578 | public void setResizable(boolean resizable) { |
| 579 | //this.resizable = resizable; // really only used for canvas |
| 580 | |
| 581 | if (frame != null) { |
| 582 | frame.setResizable(resizable); |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | |
| 587 | @Override |
nothing calls this directly
no test coverage detected