2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 13:47:41 +00:00

Added TODO

This commit is contained in:
Albert Vaca Cintora 2023-05-24 16:57:33 +02:00
parent 0f3ad63ee3
commit f172ffd129
2 changed files with 2 additions and 0 deletions

View File

@ -93,6 +93,7 @@ public class MousePadPlugin extends Plugin {
if (np == null) {
np = new NetworkPacket(PACKET_TYPE_MOUSEPAD_REQUEST);
} else {
// TODO: In my tests we never get here. Decide if it's worth keeping the logic to replace unsent packets.
dx += np.getInt("dx");
dy += np.getInt("dx");
}

View File

@ -113,6 +113,7 @@ public class PresenterPlugin extends Plugin {
if (np == null) {
np = new NetworkPacket(PACKET_TYPE_PRESENTER);
} else {
// TODO: In my tests we never get here. Decide if it's worth keeping the logic to replace unsent packets.
xDelta += np.getInt("dx");
yDelta += np.getInt("dy");
}