diff options
Diffstat (limited to 'src/com/cyanogenmod/setupwizard/setup/CMSetupWizardData.java')
-rw-r--r-- | src/com/cyanogenmod/setupwizard/setup/CMSetupWizardData.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/com/cyanogenmod/setupwizard/setup/CMSetupWizardData.java b/src/com/cyanogenmod/setupwizard/setup/CMSetupWizardData.java index ca0d9de..b4cba65 100644 --- a/src/com/cyanogenmod/setupwizard/setup/CMSetupWizardData.java +++ b/src/com/cyanogenmod/setupwizard/setup/CMSetupWizardData.java @@ -113,8 +113,13 @@ public class CMSetupWizardData extends AbstractSetupData { boolean isConnected = SetupWizardUtils.isNetworkConnected(mContext); GmsAccountPage gmsAccountPage = (GmsAccountPage) getPage(GmsAccountPage.TAG); + OtherSettingsPage otherSettingsPage = (OtherSettingsPage) getPage(OtherSettingsPage.TAG); if (gmsAccountPage != null) { - gmsAccountPage.setHidden(!isConnected && gmsAccountPage.canSkip()); + boolean hidden = !isConnected && gmsAccountPage.canSkip(); + gmsAccountPage.setHidden(hidden); + if (otherSettingsPage != null) { + otherSettingsPage.setHidden(!hidden); + } } CyanogenServicesPage cyanogenServicesPage = (CyanogenServicesPage) getPage(CyanogenServicesPage.TAG); |