Tweaks based on PR comments, simplify some more strings

This commit is contained in:
arkon
2020-01-08 21:53:08 -05:00
parent 0073ddf237
commit d62f0de862
3 changed files with 25 additions and 24 deletions

View File

@ -27,6 +27,7 @@ class DownloadChaptersDialog<T>(bundle: Bundle? = null) : DialogController(bundl
).map { activity.getString(it) }
return MaterialDialog.Builder(activity)
.title(R.string.manga_download)
.negativeText(android.R.string.cancel)
.items(choices)
.itemsCallback { _, _, position, _ ->
@ -39,4 +40,4 @@ class DownloadChaptersDialog<T>(bundle: Bundle? = null) : DialogController(bundl
fun downloadChapters(choice: Int)
}
}
}