am 5d80f19c: Merge "QS: Only hide grid if there is detail to show" into lmp-mr1-dev

* commit '5d80f19c145f99eb1a2ada57a6fb1d8c3a6fa8b2':
  QS: Only hide grid if there is detail to show
This commit is contained in:
Jason Monk
2014-10-29 22:50:22 +00:00
committed by Android Git Automerger

View File

@@ -542,7 +542,10 @@ public class QSPanel extends ViewGroup {
@Override
public void onAnimationEnd(Animator animation) {
setGridContentVisibility(false);
// Only hide content if still in detail state.
if (mDetailRecord != null) {
setGridContentVisibility(false);
}
}
};