Skip to content

Commit

Permalink
am 8570139: am a359df0: am f009e35: Merge "Fix blank lockscreen #3" i…
Browse files Browse the repository at this point in the history
…nto lmp-dev

* commit '85701394472bcc3c4c93e0d2780cb46047a9f712':
  Fix blank lockscreen #3
  • Loading branch information
XSJoJo authored and Android Git Automerger committed Oct 4, 2014
2 parents c469479 + 8570139 commit 5c9f098
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 5c9f098

Please sign in to comment.