Fixes a bug where the lockscreen would be frozen

am: 3127daf036

Change-Id: I6a15fdea3a17a9f6991931edfcd6aa7b224ff159
This commit is contained in:
Selim Cinek
2016-07-25 22:45:36 +00:00
committed by android-build-merger

View File

@@ -209,6 +209,9 @@ public abstract class PanelView extends FrameLayout {
public void setTouchDisabled(boolean disabled) {
mTouchDisabled = disabled;
if (mTouchDisabled && mTracking) {
onTrackingStopped(true /* expanded */);
}
}
@Override