use the main thread when deleting images from fullscreen view
This commit is contained in:
parent
3a2cdd40c4
commit
c4f49c56c9
1 changed files with 2 additions and 6 deletions
|
@ -174,14 +174,10 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
|
||||||
if (!isShowingPermDialog(file)) {
|
if (!isShowingPermDialog(file)) {
|
||||||
val document = getFileDocument(mPath, config.treeUri)
|
val document = getFileDocument(mPath, config.treeUri)
|
||||||
if (document.uri.toString().endsWith(file.absolutePath.getFilenameFromPath()) && !document.isDirectory)
|
if (document.uri.toString().endsWith(file.absolutePath.getFilenameFromPath()) && !document.isDirectory)
|
||||||
Thread({
|
document.delete()
|
||||||
document.delete()
|
|
||||||
}).start()
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Thread({
|
file.delete()
|
||||||
file.delete()
|
|
||||||
}).start()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (deleteFromMediaStore(file)) {
|
if (deleteFromMediaStore(file)) {
|
||||||
|
|
Loading…
Reference in a new issue