Revert to only showing intro/setup on first run

This commit is contained in:
str4d-transport
2014-07-07 00:28:42 +00:00
parent 4aaf58fbff
commit 0641ab771b

View File

@@ -192,8 +192,7 @@ public class EmailListActivity extends ActionBarActivity implements
mDrawerLayout.openDrawer(mDrawerOuter);
// If first start, go to introduction and setup wizard
// TODO always show while testing, revert to preference when finished
if (true || mSharedPrefs.getBoolean(PREF_FIRST_START, true)) {
if (mSharedPrefs.getBoolean(PREF_FIRST_START, true)) {
mSharedPrefs.edit().putBoolean(PREF_FIRST_START, false).apply();
Intent i = new Intent(EmailListActivity.this, IntroActivity.class);
startActivityForResult(i, SHOW_INTRODUCTION);