MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / imageClosed

Method imageClosed

ij/src/main/java/ij/gui/PlotWindow.java:1020–1026  ·  view source on GitHub ↗

For live plots, if either the source image or this image are closed, exit live mode

(ImagePlus imp)

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 1

disableLivePlotMethod · 0.95

Tested by

no test coverage detected