- Timestamp:
- Jan 12, 2011 4:58:16 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r34778 r35509 306 306 break; 307 307 } 308 309 /* Notify all listeners: */ 310 emit mouseStateChanged(mouseState()); 308 311 } 309 312 … … 380 383 381 384 /* Otherwise we should show host pointer with guest shape assigned to it if: 382 * mouse is 'integrated', 'absolute', valid pointer shape is present. */ 383 if (uisession()->isMouseIntegrated() && 385 * machine is NOT 'paused', mouse is 'integrated', 'absolute', valid pointer shape is present. */ 386 if (!uisession()->isPaused() && 387 uisession()->isMouseIntegrated() && 384 388 uisession()->isMouseSupportsAbsolute() && 385 389 uisession()->isValidPointerShapePresent()) … … 393 397 394 398 /* There could be other states covering such situations as: 395 * 1. mouse is 'not captured', 'integrated', 'not absolute' or 396 * 2. mouse is 'not captured', 'not integrated', 'absolute'. 399 * 1. machine is 'paused' or 400 * 2. mouse is 'not captured', 'integrated', 'not absolute' or 401 * 3. mouse is 'not captured', 'not integrated', 'absolute'. 397 402 * We have nothing to do with that except just unset the cursor. */ 398 403 {
Note:
See TracChangeset
for help on using the changeset viewer.