MCPcopy Index your code
hub / github.com/arduino/Arduino / mouseMoved

Method mouseMoved

app/src/processing/app/EditorToolbar.java:340–352  ·  view source on GitHub ↗
(MouseEvent e)

Source from the content-addressed store, hash-verified

338
339
340 public void mouseMoved(MouseEvent e) {
341 if (!isEnabled())
342 return;
343
344 // mouse events before paint();
345 if (state == null) return;
346
347 if (state[OPEN] != INACTIVE) {
348 // avoid flicker, since there will probably be an update event
349 setState(OPEN, INACTIVE, false);
350 }
351 handleMouse(e);
352 }
353
354
355 public void mouseDragged(MouseEvent e) {

Callers

nothing calls this directly

Calls 2

setStateMethod · 0.95
handleMouseMethod · 0.95

Tested by

no test coverage detected