allow setting the editor app as default, fix #164

This commit is contained in:
tibbi 2017-03-04 21:53:12 +01:00
parent 5a0b031d3f
commit 3619a32a9c
1 changed files with 1 additions and 2 deletions

View File

@ -87,10 +87,9 @@ fun Activity.openWith(file: File) {
fun Activity.openEditor(file: File) {
val intent = Intent(Intent.ACTION_EDIT)
intent.setDataAndType(Uri.fromFile(file), "image/*")
val chooser = Intent.createChooser(intent, getString(R.string.edit_image_with))
if (intent.resolveActivity(packageManager) != null) {
startActivityForResult(chooser, REQUEST_EDIT_IMAGE)
startActivityForResult(intent, REQUEST_EDIT_IMAGE)
} else {
toast(R.string.no_editor_found)
}