Positions the specified window in the center of the screen containing the "ImageJ" window.
(Window win)
| 83 | /** Positions the specified window in the center of the |
| 84 | screen containing the "ImageJ" window. */ |
| 85 | public static void centerOnImageJScreen(Window win) { |
| 86 | center(win, IJ.getInstance()); |
| 87 | } |
| 88 | |
| 89 | public static void center(Window win) { |
| 90 | center(win, win); |
no test coverage detected