Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Fix unexpected forward page actions due to SwipeRight gesture on WaveVR #1003

Merged
merged 1 commit into from
Mar 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/src/wavevr/cpp/DeviceDelegateWaveVR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,7 @@ DeviceDelegateWaveVR::ProcessEvents() {
break;
case WVR_EventType_TouchUntapped: {
VRB_DEBUG("WVR_EventType_TouchUntapped");
break;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, I was noticing this problem just yesterday. It was super annoying.

Copy link
Contributor

@cvan cvan Mar 13, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also: we should probably fix the braces and the indenting of the cases above, just in case

}
case WVR_EventType_LeftToRightSwipe: {
VRB_DEBUG("WVR_EventType_LeftToRightSwipe");
Expand Down