Disable stuff when hand is not edited

hh
Laurent 6 years ago
parent dbe325e6e7
commit 22daa6005e
  1. 4
      app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/HandHistoryViewModel.kt

@ -652,6 +652,10 @@ class HandHistoryViewModel : ViewModel(), RowRepresentableDataSource, CardCentra
override fun isEnabled(row: RowRepresentable, tag: Int): Boolean { override fun isEnabled(row: RowRepresentable, tag: Int): Boolean {
if (!this.isEdited) {
return false
}
return when (row) { return when (row) {
is PlayerSetupRow -> { is PlayerSetupRow -> {
when (tag) { when (tag) {

Loading…
Cancel
Save