Skip to content

Commit 958343c

Browse files
John SpurlockAndroid (Google) Code Review
authored andcommitted
Merge "Fix for navbar back/home appearing in keyguard (multiuser)." into jb-mr1.1-dev
2 parents bf0e87a + ce479d8 commit 958343c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

policy/src/com/android/internal/policy/impl/PhoneWindowManager.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3756,6 +3756,14 @@ public void onReceive(Context context, Intent intent) {
37563756
// and then updates our own bookkeeping based on the now-
37573757
// current user.
37583758
mSettingsObserver.onChange(false);
3759+
3760+
// force a re-application of focused window sysui visibility.
3761+
// the window may never have been shown for this user
3762+
// e.g. the keyguard when going through the new-user setup flow
3763+
synchronized(mLock) {
3764+
mLastSystemUiFlags = 0;
3765+
updateSystemUiVisibilityLw();
3766+
}
37593767
}
37603768
}
37613769
};

0 commit comments

Comments
 (0)