()
| 838 | } |
| 839 | |
| 840 | void setMaxBounds() { |
| 841 | if (maxBoundsReset) { |
| 842 | maxBoundsReset = false; |
| 843 | ImageWindow win = imp.getWindow(); |
| 844 | if (win!=null && !IJ.isLinux() && win.maxBounds!=null) { |
| 845 | win.setMaximizedBounds(win.maxBounds); |
| 846 | win.setMaxBoundsTime = System.currentTimeMillis(); |
| 847 | } |
| 848 | } |
| 849 | } |
| 850 | |
| 851 | void resetMaxBounds() { |
| 852 | ImageWindow win = imp.getWindow(); |
no test coverage detected