make sure we save the rotated image on the background thread

This commit is contained in:
tibbi 2017-11-09 16:47:36 +01:00
parent 5808ec3b62
commit 0048f9096b

View file

@ -495,15 +495,14 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
private fun saveImageAs() {
val currPath = getCurrentPath()
SaveAsDialog(this, currPath, false) {
Thread({
val selectedFile = File(it)
handleSAFDialog(selectedFile) {
Thread({
saveImageToFile(currPath, it)
}
}).start()
}
}
}
private fun saveImageToFile(oldPath: String, newPath: String) {
val newFile = File(newPath)