Add missing comment

This commit is contained in:
luiscuenca 2019-11-19 12:20:54 -07:00
parent f1a9f52ee1
commit 45aca5115d
No known key found for this signature in database
GPG key ID: 2387ECD129A6961D

View file

@ -128,6 +128,10 @@ void KeyboardMouseDevice::mouseMoveEvent(QMouseEvent* event) {
}
bool KeyboardMouseDevice::isWheelByTouchPad(QWheelEvent* event) {
// This function is only used to track two finger swipe using the touchPad on Windows.
// That gesture gets sent as a wheel event. This wheel delta values are used to orbit the camera.
// On MacOS the two finger swipe fires touch events and wheel events.
// In that case we always return false to avoid interference between both.
#ifdef Q_OS_MAC
return false;
#endif