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

Method hideRangeArrows

ij/src/main/java/ij/gui/PlotWindow.java:784–793  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

782 }
783
784 public void hideRangeArrows() {
785 if (imp == null || rangeArrowRois==null) return;
786 Overlay ovly = imp.getOverlay();
787 if (ovly == null) return;
788 for (Roi roi : rangeArrowRois)
789 ovly.remove(roi);
790 ic.repaint();
791 rangeArrowsVisible = false;
792 activeRangeArrow = -1;
793 }
794
795 /** Returns the index of the range-modifying symbol or axis at the
796 * cursor position x,y, or -1 of none.

Callers 5

mouseMovedMethod · 0.95
mouseExitedMethod · 0.95
showRangeArrowsMethod · 0.95
saveAsTiffMethod · 0.80
showDialogMethod · 0.80

Calls 3

removeMethod · 0.95
getOverlayMethod · 0.45
repaintMethod · 0.45

Tested by

no test coverage detected