am b682d08a: Block QS in sec. users setup when simple

* commit 'b682d08a4162f3abf601040c700e877472f96193':
  Block QS in sec. users setup when simple
This commit is contained in:
Jason Monk
2014-09-18 18:44:19 +00:00
committed by Android Git Automerger

View File

@@ -1485,7 +1485,11 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
updateClearAll();
updateEmptyShadeView();
mNotificationPanel.setQsExpansionEnabled(isDeviceProvisioned());
// Disable QS if device not provisioned.
// If the user switcher is simple then disable QS during setup because
// the user intends to use the lock screen user switcher, QS in not needed.
mNotificationPanel.setQsExpansionEnabled(isDeviceProvisioned()
&& (!mUserSwitcherController.isSimpleUserSwitcher() || mUserSetup));
mShadeUpdates.check();
}