Changeset 47233 in vbox
- Timestamp:
- Jul 18, 2013 1:36:00 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/MouseImpl.cpp
r47226 r47233 437 437 bool fUsesVMMDevEvent) 438 438 { 439 HRESULT rc ;439 HRESULT rc = S_OK; 440 440 /** If we are using the VMMDev to report absolute position but without 441 441 * VMMDev IRQ support then we need to send a small "jiggle" to the emulated … … 454 454 } 455 455 else 456 rc = reportAbsEventToMouseDev(x, y, 0, 0, 0); 457 } 458 rc = reportRelEventToMouseDev(cJiggle, 0, dz, dw, fButtons); 456 { 457 rc = reportAbsEventToMouseDev(x, y, 0, 0, fButtons); 458 fButtons = 0; 459 } 460 } 461 if (SUCCEEDED(rc)) 462 rc = reportRelEventToMouseDev(cJiggle, 0, dz, dw, fButtons); 459 463 460 464 mcLastX = x;
Note:
See TracChangeset
for help on using the changeset viewer.