Merge "DO NOT MERGE Add null check for status bar transitions" into qt-qpr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
548c3bae81
@@ -2277,8 +2277,10 @@ public class StatusBar extends SystemUI implements DemoMode,
|
||||
|
||||
void checkBarModes() {
|
||||
if (mDemoMode) return;
|
||||
if (mStatusBarView != null) checkBarMode(mStatusBarMode, mStatusBarWindowState,
|
||||
getStatusBarTransitions());
|
||||
if (mStatusBarView != null && getStatusBarTransitions() != null) {
|
||||
checkBarMode(mStatusBarMode, mStatusBarWindowState,
|
||||
getStatusBarTransitions());
|
||||
}
|
||||
mNavigationBarController.checkNavBarModes(mDisplayId);
|
||||
mNoAnimationOnNextBarModeChange = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user