Skip to content

Commit

Permalink
am 5c9f098: am 8570139: am a359df0: am f009e35: Merge "Fix blank lock…
Browse files Browse the repository at this point in the history
…screen #3" into lmp-dev

* commit '5c9f0987fce29a78f79429947c00b14f5a8b4504':
  Fix blank lockscreen #3
  • Loading branch information
XSJoJo authored and Android Git Automerger committed Oct 4, 2014
2 parents 6e4140c + 5c9f098 commit a94d2c5
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2372,7 +2372,9 @@ public void animateExpandSettingsPanel() {
}

public void animateCollapseQuickSettings() {
mStatusBarView.collapseAllPanels(true);
if (mState == StatusBarState.SHADE) {
mStatusBarView.collapseAllPanels(true);
}
}

void makeExpandedInvisible() {
Expand Down Expand Up @@ -2474,7 +2476,7 @@ public void setWindowState(int window, int state) {
&& mStatusBarWindowState != state) {
mStatusBarWindowState = state;
if (DEBUG_WINDOW_STATE) Log.d(TAG, "Status bar " + windowStateToString(state));
if (!showing) {
if (!showing && mState == StatusBarState.SHADE) {
mStatusBarView.collapseAllPanels(false);
}
}
Expand Down

0 comments on commit a94d2c5

Please sign in to comment.