You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setPannelState(Anchor) has a bug:
if time is too short, anchor mSlideOffset != mAnchorPoint, setPannelState(Anchor) again state is same so method return. if (!isEnabled() || (!mFirstLayout && mSlideableView == null) || state == mSlideState || mSlideState == PanelState.DRAGGING) return;
change: boolean stateStatus = (state == PanelState.ANCHORED ? mSlideOffset == mAnchorPoint : state == mSlideState); if (!isEnabled() || (!mFirstLayout && mSlideableView == null) || stateStatus || mSlideState == PanelState.DRAGGING) return;
The text was updated successfully, but these errors were encountered:
setPannelState(Anchor) has a bug:
if time is too short, anchor mSlideOffset != mAnchorPoint, setPannelState(Anchor) again state is same so method return.
if (!isEnabled() || (!mFirstLayout && mSlideableView == null) || state == mSlideState || mSlideState == PanelState.DRAGGING) return;
change:
boolean stateStatus = (state == PanelState.ANCHORED ? mSlideOffset == mAnchorPoint : state == mSlideState); if (!isEnabled() || (!mFirstLayout && mSlideableView == null) || stateStatus || mSlideState == PanelState.DRAGGING) return;
The text was updated successfully, but these errors were encountered: