(MouseEvent e)
| 129 | |
| 130 | addMouseMotionListener(new MouseMotionAdapter() { |
| 131 | public void mouseMoved(MouseEvent e) { |
| 132 | int x = e.getX(); |
| 133 | for (Tab tab : tabs) { |
| 134 | if (tab.contains(x) && !tab.textVisible) { |
| 135 | lastNoticeName = editor.getSketch().getCode(tab.index).getPrettyName(); |
| 136 | editor.statusNotice(lastNoticeName); |
| 137 | } |
| 138 | } |
| 139 | } |
| 140 | }); |
| 141 | } |
| 142 |
nothing calls this directly
no test coverage detected