We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 414561c + e4e8c56 commit 3c008f2Copy full SHA for 3c008f2
packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
@@ -274,10 +274,13 @@ public void onChange(boolean selfChange) {
274
Settings.Secure.USER_SETUP_COMPLETE,
275
0 /*default */,
276
mCurrentUserId);
277
+ if (MULTIUSER_DEBUG) Slog.d(TAG, String.format("User setup changed: " +
278
+ "selfChange=%s userSetup=%s mUserSetup=%s",
279
+ selfChange, userSetup, mUserSetup));
280
+ if (mSettingsPanel != null)
281
+ mSettingsPanel.setEnabled(userSetup);
282
if (userSetup != mUserSetup) {
283
mUserSetup = userSetup;
- if (mSettingsPanel != null)
- mSettingsPanel.setEnabled(mUserSetup);
284
if (!mUserSetup && mStatusBarView != null)
285
animateCollapseQuickSettings();
286
}
0 commit comments