diff options
author | cretin45 <cretin45@gmail.com> | 2015-01-23 21:19:15 -0800 |
---|---|---|
committer | cretin45 <cretin45@gmail.com> | 2015-01-23 21:19:15 -0800 |
commit | 0d39727f843ad7be83118e07d38ac67c145cb18f (patch) | |
tree | 11b5560c4878d8394fbbe5434e4865a1e859daa4 /src/com/cyanogenmod/setupwizard | |
parent | b7e0ddb233a87feef00820a4450637fc7cc1a991 (diff) | |
download | packages_apps_SetupWizard-0d39727f843ad7be83118e07d38ac67c145cb18f.zip packages_apps_SetupWizard-0d39727f843ad7be83118e07d38ac67c145cb18f.tar.gz packages_apps_SetupWizard-0d39727f843ad7be83118e07d38ac67c145cb18f.tar.bz2 |
SetupWizard: Advance if account exists
Change-Id: I8ab1c1b4f25c31d7c97f568b923724743cd3c322
Diffstat (limited to 'src/com/cyanogenmod/setupwizard')
-rw-r--r-- | src/com/cyanogenmod/setupwizard/setup/CyanogenServicesPage.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/cyanogenmod/setupwizard/setup/CyanogenServicesPage.java b/src/com/cyanogenmod/setupwizard/setup/CyanogenServicesPage.java index f6ac990..60fd0d2 100644 --- a/src/com/cyanogenmod/setupwizard/setup/CyanogenServicesPage.java +++ b/src/com/cyanogenmod/setupwizard/setup/CyanogenServicesPage.java @@ -79,8 +79,10 @@ public class CyanogenServicesPage extends SetupPage { if (!SetupWizardUtils.accountExists(mContext, mContext.getString(R.string.cm_account_type))) { launchCyanogenAccountSetup(context); + super.doLoadAction(context, action); + } else { + getCallbacks().onNextPage(); } - super.doLoadAction(context, action); } } |