diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/extensions/activity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/extensions/activity.kt index 3fa42c499..742905b43 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/extensions/activity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/extensions/activity.kt @@ -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) }