mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 14:37:59 +01:00
make sure we setup the scroll direction at main screen from the main thread
This commit is contained in:
parent
82ca23935a
commit
2789702ad7
1 changed files with 1 additions and 1 deletions
|
@ -986,10 +986,10 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
||||||
setupZoomListener(mZoomListener)
|
setupZoomListener(mZoomListener)
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
directories_grid.adapter = this
|
directories_grid.adapter = this
|
||||||
|
setupScrollDirection()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
measureRecyclerViewContent(dirsToShow)
|
measureRecyclerViewContent(dirsToShow)
|
||||||
setupScrollDirection()
|
|
||||||
} else {
|
} else {
|
||||||
if (textToSearch.isNotEmpty()) {
|
if (textToSearch.isNotEmpty()) {
|
||||||
dirsToShow = dirsToShow.filter { it.name.contains(textToSearch, true) }.sortedBy { !it.name.startsWith(textToSearch, true) }.toMutableList() as ArrayList
|
dirsToShow = dirsToShow.filter { it.name.contains(textToSearch, true) }.sortedBy { !it.name.startsWith(textToSearch, true) }.toMutableList() as ArrayList
|
||||||
|
|
Loading…
Reference in a new issue