mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 20:48:00 +01:00
make sure we hide the Recycle Bin folder if empty
This commit is contained in:
parent
f54616bf3f
commit
0856abfb83
1 changed files with 10 additions and 3 deletions
|
@ -864,9 +864,16 @@ class MainActivity : SimpleActivity(), DirectoryAdapter.DirOperationsListener {
|
|||
}
|
||||
|
||||
if (getFavoritePaths().isEmpty()) {
|
||||
val dirsFolder = dirs.firstOrNull { it.areFavorites() }
|
||||
if (dirsFolder != null) {
|
||||
invalidDirs.add(dirsFolder)
|
||||
val favoritesFolder = dirs.firstOrNull { it.areFavorites() }
|
||||
if (favoritesFolder != null) {
|
||||
invalidDirs.add(favoritesFolder)
|
||||
}
|
||||
}
|
||||
|
||||
if (config.useRecycleBin) {
|
||||
val binFolder = dirs.firstOrNull { it.path == RECYCLE_BIN }
|
||||
if (binFolder != null && galleryDB.MediumDao().getDeletedMedia().isEmpty()) {
|
||||
invalidDirs.add(binFolder)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue