Merge branch 'no_screenfilter_warning_splash' into 'master'

Don't show screenfilter warning in SplashScreenActivity

See merge request briar/briar!832
This commit is contained in:
akwizgran
2018-06-29 14:41:09 +00:00

View File

@@ -80,4 +80,10 @@ public class SplashScreenActivity extends BaseActivity {
PreferenceManager.setDefaultValues(SplashScreenActivity.this,
R.xml.panic_preferences, false));
}
// Don't show any warnings here
@Override
public boolean shouldAllowTap() {
return true;
}
}