Link Android back button to undo

This commit is contained in:
adrienmalin 2018-12-05 12:23:07 +01:00
parent b92b0acd89
commit 04f388bc1e

View File

@ -126,6 +126,15 @@ class MatchActivity : AppCompatActivity() {
}
}
override fun onBackPressed() {
if (matchModel?.playId == 0)
super.onBackPressed()
else {
matchModel?.undo()
updateUI()
}
}
fun updateUI() {
matchModel?.apply {
undo?.isVisible = when (playId) {