Merge branch 'blender-v3.2-release'

This commit is contained in:
Julian Eisel 2022-05-27 12:58:07 +02:00
commit 5b40c48f85
1 changed files with 7 additions and 0 deletions

View File

@ -199,6 +199,13 @@ bool WM_event_type_mask_test(const int event_type, const enum eEventType_Mask ma
}
}
/* NDOF */
if (mask & EVT_TYPE_MASK_NDOF) {
if (ISNDOF(event_type)) {
return true;
}
}
/* Action Zone. */
if (mask & EVT_TYPE_MASK_ACTIONZONE) {
if (IS_EVENT_ACTIONZONE(event_type)) {