Windows QPA: Fix WM_NCHITTEST not being sent to QAbstractNativeEventFilter

The message is not sent to the QAbstractEventDispatcher, so it needs to be
excluded from the list of input messages not sent to
QAbstractNativeEventFilter.
Amends a0a22037cd.

Fixes: QTBUG-70873
Change-Id: Id84d73b46e8954867c06a4ddf5dc9e536ecd897e
Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
This commit is contained in:
Friedemann Kleint 2018-10-02 08:36:09 +02:00
parent d8817ddde6
commit 18ec0a8b09

View File

@ -873,7 +873,6 @@ static inline bool isInputMessage(UINT m)
case WM_TOUCH:
case WM_MOUSEHOVER:
case WM_MOUSELEAVE:
case WM_NCHITTEST:
case WM_NCMOUSEHOVER:
case WM_NCMOUSELEAVE:
case WM_SIZING: