show Later instead of Cancel at the rating prompt

This commit is contained in:
tibbi 2021-07-11 14:32:33 +02:00
parent c9e4b8ca14
commit ab02ceb33c

View file

@ -27,7 +27,7 @@ class RateStarsDialog(val activity: Activity) {
}
dialog = AlertDialog.Builder(activity)
.setNegativeButton(R.string.cancel) { dialog, which -> dialogCancelled(false) }
.setNegativeButton(R.string.later) { dialog, which -> dialogCancelled(false) }
.setOnCancelListener { dialogCancelled(false) }
.create().apply {
activity.setupDialogStuff(view, this, cancelOnTouchOutside = false)