Fix SpaceNavigator type 6DOF controllers on Windows.

We were creating the event but never dispatching it.
pull/891/head
Jonathan Westhues 2021-01-15 16:50:38 -08:00
parent d6c2983c72
commit 76589a8a87
1 changed files with 5 additions and 0 deletions

View File

@ -734,6 +734,11 @@ public:
event.type = SixDofEvent::Type::RELEASE;
event.button = SixDofEvent::Button::FIT;
}
} else {
return 0;
}
if(window->onSixDofEvent) {
window->onSixDofEvent(event);
}
return 0;
}