use the main thread when deleting images from fullscreen view

This commit is contained in:
tibbi 2017-01-22 17:44:27 +01:00
parent 3a2cdd40c4
commit c4f49c56c9
1 changed files with 2 additions and 6 deletions

View File

@ -174,14 +174,10 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
if (!isShowingPermDialog(file)) {
val document = getFileDocument(mPath, config.treeUri)
if (document.uri.toString().endsWith(file.absolutePath.getFilenameFromPath()) && !document.isDirectory)
Thread({
document.delete()
}).start()
document.delete()
}
} else {
Thread({
file.delete()
}).start()
file.delete()
}
if (deleteFromMediaStore(file)) {