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