Remove two instructions

This commit is contained in:
SerpentSpirale 2021-06-17 22:13:08 +02:00
parent cbc024c029
commit fc00455a48

View File

@ -322,8 +322,6 @@ public class BaseMainActivity extends LoggableActivity {
if(CallbackBridge.isGrabbing()) return false;
int x = (int) (e.getX(i) * scaleFactor);
int y = (int) (e.getY(i) * scaleFactor);
CallbackBridge.mouseX = x;
CallbackBridge.mouseY = y;
CallbackBridge.sendCursorPos(x, y);
return true; //mouse event handled successfully
}