refresh media thumbnails instantly after changing sorting or filtering
This commit is contained in:
parent
8af103d98c
commit
7f17aeda71
1 changed files with 4 additions and 3 deletions
|
@ -274,7 +274,7 @@ class MediaActivity : SimpleActivity(), MediaAdapter.MediaOperationsListener {
|
|||
val filtered = mMedia.filter { it.name.contains(text, true) } as ArrayList
|
||||
filtered.sortBy { !it.name.startsWith(text, true) }
|
||||
runOnUiThread {
|
||||
(media_grid.adapter as? MediaAdapter)?.updateMedia(filtered)
|
||||
getMediaAdapter()?.updateMedia(filtered)
|
||||
}
|
||||
}.start()
|
||||
}
|
||||
|
@ -367,12 +367,14 @@ class MediaActivity : SimpleActivity(), MediaAdapter.MediaOperationsListener {
|
|||
|
||||
private fun showSortingDialog() {
|
||||
ChangeSortingDialog(this, false, !config.showAll, mPath) {
|
||||
mLoadedInitialPhotos = false
|
||||
getMedia()
|
||||
}
|
||||
}
|
||||
|
||||
private fun showFilterMediaDialog() {
|
||||
FilterMediaDialog(this) {
|
||||
mLoadedInitialPhotos = false
|
||||
media_refresh_layout.isRefreshing = true
|
||||
getMedia()
|
||||
}
|
||||
|
@ -380,7 +382,6 @@ class MediaActivity : SimpleActivity(), MediaAdapter.MediaOperationsListener {
|
|||
|
||||
private fun toggleFilenameVisibility() {
|
||||
config.displayFileNames = !config.displayFileNames
|
||||
if (media_grid.adapter != null)
|
||||
getMediaAdapter()?.updateDisplayFilenames(config.displayFileNames)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue