Merge pull request #460 from alexbakker/fix-intro-back

Disable wizard mode when the done slide of the intro is reached
This commit is contained in:
Michael Schättgen 2020-06-10 10:51:35 +02:00 committed by GitHub
commit 821d0b5147
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,6 +83,10 @@ public class IntroActivity extends AppIntro2 {
}
}
if (newFragment == _endSlide) {
setWizardMode(false);
}
setSwipeLock(true);
}