MCPcopy Create free account
hub / github.com/benfry/processing4 / mouseDragged

Method mouseDragged

app/src/processing/app/ui/EditorStatus.java:162–170  ·  view source on GitHub ↗
(MouseEvent e)

Source from the content-addressed store, hash-verified

160
161 addMouseMotionListener(new MouseMotionListener() {
162 @Override
163 public void mouseDragged(MouseEvent e) {
164 // BasicSplitPaneUI.startDragging gets called even when you click but
165 // don't drag, so we can't expand the console whenever that gets called
166 // or the button wouldn't work.
167 setCollapsed(false);
168
169 updateMouse(e, true);
170 }
171
172 @Override
173 public void mouseMoved(MouseEvent e) {

Callers

nothing calls this directly

Calls 2

setCollapsedMethod · 0.95
updateMouseMethod · 0.95

Tested by

no test coverage detected