[server] Fix regression in SeatInterface::end/cancelPointerPinchGesture

Regression with c72510c932 which removed a
needed source code line.

Thanks build.kde.org!
This commit is contained in:
Martin Gräßlin 2016-11-24 09:36:18 +01:00
parent b44a8fb556
commit a1990e9cc5

View file

@ -995,6 +995,7 @@ void SeatInterface::endPointerPinchGesture()
p->d_func()->endPinchGesture(serial);
}
);
d->globalPointer.gestureSurface.clear();
}
void SeatInterface::cancelPointerPinchGesture()
@ -1009,6 +1010,7 @@ void SeatInterface::cancelPointerPinchGesture()
p->d_func()->cancelPinchGesture(serial);
}
);
d->globalPointer.gestureSurface.clear();
}
void SeatInterface::keyPressed(quint32 key)