| Summary: | Remote control is not working correctly. y-axis not working, x-axis behaves as x+y axis | ||
|---|---|---|---|
| Product: | [Applications] kdeconnect | Reporter: | Sebastian Kuźlak <sebastiankuzlak> |
| Component: | android-application | Assignee: | Albert Vaca Cintora <albertvaka> |
| Status: | REPORTED --- | ||
| Severity: | normal | CC: | nate |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Sebastian Kuźlak
2021-08-15 21:18:11 UTC
Clarification: when moving on x-axis, mouse on a pc will move on a diagonal, between top-left to bottom-right side of a screen
just went thru MousePadPlugin.java and found something in sendMouseDelta
if (np == null) {
np = new NetworkPacket(PACKET_TYPE_MOUSEPAD_REQUEST);
} else {
dx += np.getInt("dx");
dy += np.getInt("dx"); <- shouldn't it be dy?
}
|