Skip to content

Commit 6d70a92

Browse files
author
wil
committed
update
1 parent 3ebbc23 commit 6d70a92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jme3-desktop/src/main/java/com/jme3/input/awt/AwtMouseInput.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ public void mouseDragged(MouseEvent awtEvt) {
285285

286286
@Override
287287
public void mouseMoved(MouseEvent awtEvt) {
288-
if (isRecentering) {
288+
if (isRecentering) {
289289
// MHenze (cylab) Fix Issue 35:
290290
// As long as the MouseInput is in recentering mode, nothing is done until the mouse is entered in the component
291291
// by the events generated by the robot. If this happens, the last known location is reset.
@@ -306,7 +306,7 @@ public void mouseMoved(MouseEvent awtEvt) {
306306
}
307307
lastKnownLocation.x = awtEvt.getX();
308308
lastKnownLocation.y = awtEvt.getY();
309-
309+
310310
cursorMoved = true;
311311
}
312312
}

0 commit comments

Comments
 (0)