[UI/Timetable] Temporarily fix page scrolling issues.

This commit is contained in:
Kuba Szczodrzyński 2020-01-05 18:43:14 +01:00
parent 834c4fc5f4
commit fc58035bbf

View File

@ -67,7 +67,8 @@ class TimetableFragment : Fragment(), CoroutineScope {
return inflater.inflate(R.layout.fragment_loading, container, false)
// activity, context and profile is valid
b = FragmentTimetableV2Binding.inflate(inflater)
b.refreshLayout.setParent(activity.swipeRefreshLayout)
// TODO: 2020-01-05 resolve issues with page scrolling (and scrolling up) with viewpager and swipe to refresh
//b.refreshLayout.setParent(activity.swipeRefreshLayout)
return b.root
}