We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ebbc23 commit 6d70a92Copy full SHA for 6d70a92
jme3-desktop/src/main/java/com/jme3/input/awt/AwtMouseInput.java
@@ -285,7 +285,7 @@ public void mouseDragged(MouseEvent awtEvt) {
285
286
@Override
287
public void mouseMoved(MouseEvent awtEvt) {
288
- if (isRecentering) {
+ if (isRecentering) {
289
// MHenze (cylab) Fix Issue 35:
290
// As long as the MouseInput is in recentering mode, nothing is done until the mouse is entered in the component
291
// 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) {
306
}
307
lastKnownLocation.x = awtEvt.getX();
308
lastKnownLocation.y = awtEvt.getY();
309
-
+
310
cursorMoved = true;
311
312
0 commit comments