Make folder creation dialog cancelable (#671)

This commit is contained in:
Fabian Henneke 2020-03-27 08:57:22 +01:00 committed by GitHub
parent 57771c4dfe
commit b6730ac123
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,6 @@ class FolderCreationDialogFragment : DialogFragment() {
alertDialogBuilder.setNegativeButton(getString(android.R.string.cancel)) { _, _ ->
dismiss()
}
isCancelable = false
return alertDialogBuilder.create()
}