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

View file

@ -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)) {