|
@@ -7094,6 +7094,8 @@ LRESULT CALLBACK LA_WindowProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lp
|
|
|
MAIN.EraserDeviation = MAIN.StylusDeviation; MAIN.EraserOrientation = MAIN.StylusOrientation;
|
|
|
MAIN.EraserPressure = MAIN.StylusPressure;
|
|
|
MAIN.IsPen = 1; MAIN.PointerIsEraser = ((pkt.pkStatus & TPS_INVERT) == TPS_INVERT);
|
|
|
+ point.x = pkt.pkX; point.y = pkt.pkY; ScreenToClient(hwnd, &point);
|
|
|
+ la_SendMouseEvent(hwnd, LA_MOUSEMOVE, point.x, point.y);
|
|
|
}
|
|
|
return 0; break;
|
|
|
|