TimetableLayout icon indicating copy to clipboard operation
TimetableLayout copied to clipboard

some issue

Open liqiaotong opened this issue 4 years ago • 0 comments

TimetableLayoutManager --> calculateVerticallyScrollAmount(dy:Int) -->

  1. if (bottom == parentBottom) 0 else min(dy, bottom - parentBottom) ==> if (bottom <= parentBottom) 0 else min(dy, bottom - parentBottom)

  2. if (top == parentTop) 0 else max(dy, top - parentTop) else dy ==> if (top >= parentTop) 0 else max(dy, top - parentTop)

liqiaotong avatar Apr 02 '22 08:04 liqiaotong