Fixes #124.
This commit is contained in:
parent
080d52893e
commit
68098f4d84
@ -1,3 +1,7 @@
|
|||||||
|
**1.5.4.17**
|
||||||
|
|
||||||
|
- Fixed the last bug with infinite scroll.
|
||||||
|
|
||||||
**1.5.4.16**
|
**1.5.4.16**
|
||||||
|
|
||||||
- Fixing list view displaying issues.
|
- Fixing list view displaying issues.
|
||||||
|
@ -607,13 +607,15 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
else -> Unit
|
else -> Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onTabSelected(position: Int) =
|
override fun onTabSelected(position: Int) {
|
||||||
when (position) {
|
offset = 0
|
||||||
0 -> getUnRead()
|
when (position) {
|
||||||
1 -> getRead()
|
0 -> getUnRead()
|
||||||
2 -> getStarred()
|
1 -> getRead()
|
||||||
else -> Unit
|
2 -> getStarred()
|
||||||
}
|
else -> Unit
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user