For live plots, if either the source image or this image are closed, exit live mode
(ImagePlus imp)
| 1018 | |
| 1019 | /** For live plots, if either the source image or this image are closed, exit live mode */ |
| 1020 | public void imageClosed(ImagePlus imp) { |
| 1021 | if (imp==srcImp || imp==this.imp) { |
| 1022 | disableLivePlot(); |
| 1023 | srcImp = null; |
| 1024 | plotMaker = null; |
| 1025 | } |
| 1026 | } |
| 1027 | |
| 1028 | // the background thread for live plotting. |
| 1029 | public void run() { |
nothing calls this directly
no test coverage detected