Changeset 104598 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- May 13, 2024 2:22:21 PM (11 months ago)
- svn:sync-xref-src-repo-rev:
- 163139
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp
r104592 r104598 277 277 * the same problem. At present we just let that problem be.) */ 278 278 279 # if QT_VERSION >= QT_VERSION_CHECK(5, 13, 0)280 279 /* Make sure we really do still have the focus. Qt as of version 5.13 started 281 280 * reporting it with delay, so ask the X server directly. We could remove the … … 289 288 if (xcbFocusWindow != m_windows[m_iKeyboardCaptureViewIndex]->winId()) 290 289 return true; 291 # endif292 290 293 291 /* Grab the mouse button. -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r104358 r104598 777 777 if (mouseEvent(pWheelEvent->type(), 778 778 uScreenId, 779 #if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)780 779 pWheelEvent->position().toPoint(), 781 780 pWheelEvent->globalPosition().toPoint(), 782 #else783 pWheelEvent->pos(),784 pWheelEvent->globalPos(),785 #endif786 781 #ifdef VBOX_WS_MAC 787 782 // WORKAROUND:
Note:
See TracChangeset
for help on using the changeset viewer.