Link Android back button to undo
This commit is contained in:
parent
b92b0acd89
commit
04f388bc1e
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user