(MouseEvent e)
| 1759 | } |
| 1760 | |
| 1761 | public void mouseMoved(MouseEvent e) { |
| 1762 | int x = e.getX(); |
| 1763 | if (inGap(x)) |
| 1764 | IJ.showStatus(""); |
| 1765 | else |
| 1766 | showMessage(toolID(x)); |
| 1767 | } |
| 1768 | |
| 1769 | /** Adds a tool to the toolbar. The 'toolTip' string is displayed in the status bar |
| 1770 | when the mouse is over the tool icon. The 'toolTip' string may include icon |
nothing calls this directly
no test coverage detected