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

Commit

Permalink
Fix spinner during link traversal (#578)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored and bluemarvin committed Sep 26, 2018
1 parent b03f0ad commit f864438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/cpp/ExternalVR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ struct ExternalVR::State {
memcpy(&browser, &data.browserState, sizeof(mozilla::gfx::VRBrowserState));


if (!wasPresenting && IsPresenting()) {
if ((!wasPresenting && IsPresenting()) || browser.navigationTransitionActive) {
firstPresentingFrame = true;
}
if (wasPresenting && !IsPresenting()) {
Expand Down

0 comments on commit f864438

Please sign in to comment.