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

Reset interstitial state when exiting WebXR using the back button #3203

Merged
merged 1 commit into from
Apr 21, 2020
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/main/cpp/BrowserWorld.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ BrowserWorld::State::CheckBackButton() {
if (!(controller.lastButtonState & ControllerDelegate::BUTTON_APP) &&
(controller.buttonState & ControllerDelegate::BUTTON_APP)) {
VRBrowser::HandleBack();
webXRInterstialState = WebXRInterstialState::HIDDEN;
} else if (webXRInterstialState == WebXRInterstialState::ALLOW_DISMISS
&& controller.lastButtonState == 0 && controller.buttonState) {
VRBrowser::OnDismissWebXRInterstitial();
Expand Down