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

This commit is contained in:
Jason Monk
2014-10-29 15:38:57 +00:00
committed by Android (Google) Code Review

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);
}
}
};