()
| 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. |
no test coverage detected