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

Method mouseExited

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

Source from the content-addressed store, hash-verified

420
421
422 public void mouseExited(MouseEvent e) {
423 // if the popup menu for is visible, don't register this,
424 // because the popup being set visible will fire a mouseExited() event
425 if ((popup != null) && popup.isVisible()) return;
426
427 if (state[OPEN] != INACTIVE) {
428 setState(OPEN, INACTIVE, true);
429 }
430 handleMouse(e);
431 }
432
433
434 public void mousePressed(MouseEvent e) {

Callers

nothing calls this directly

Calls 2

setStateMethod · 0.95
handleMouseMethod · 0.95

Tested by

no test coverage detected