Changeset 47672 in vbox
- Timestamp:
- Aug 12, 2013 11:17:48 AM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/UsbMouse.cpp
r47656 r47672 1487 1487 paNewContacts[i].status = MT_CONTACT_S_DIRTY; 1488 1488 paNewContacts[i].oldId = 0; /* Not used. */ 1489 if (paNewContacts[i].flags & MT_CONTACT_F_IN_CONTACT) 1490 { 1491 paNewContacts[i].flags |= MT_CONTACT_F_IN_RANGE; 1492 } 1489 1493 } 1490 1494 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r47571 r47672 935 935 currentTouchPoint.x(), currentTouchPoint.y(), iTouchPointState)); 936 936 937 contacts[i++] = RT_MAKE_U64_FROM_U16((uint16_t)currentTouchPoint.x() ,938 (uint16_t)currentTouchPoint.y() ,937 contacts[i++] = RT_MAKE_U64_FROM_U16((uint16_t)currentTouchPoint.x() + 1, 938 (uint16_t)currentTouchPoint.y() + 1, 939 939 RT_MAKE_U16(touchPoint.id(), iTouchPointState), 940 940 0);
Note:
See TracChangeset
for help on using the changeset viewer.