|
|
|
|
@ -30,7 +30,7 @@ import net.pokeranalytics.android.ui.view.RowRepresentable |
|
|
|
|
import net.pokeranalytics.android.ui.view.RowRepresentableEditDescriptor |
|
|
|
|
import net.pokeranalytics.android.ui.view.RowViewType |
|
|
|
|
import net.pokeranalytics.android.ui.view.rowrepresentable.CustomizableRowRepresentable |
|
|
|
|
import net.pokeranalytics.android.ui.view.rowrepresentable.SeparatorRowRepresentable |
|
|
|
|
import net.pokeranalytics.android.ui.view.rowrepresentable.SeparatorRow |
|
|
|
|
import net.pokeranalytics.android.ui.view.rowrepresentable.SessionRow |
|
|
|
|
import net.pokeranalytics.android.util.NULL_TEXT |
|
|
|
|
import net.pokeranalytics.android.util.UserDefaults |
|
|
|
|
@ -584,7 +584,7 @@ open class Session : RealmObject(), Savable, Editable, StaticRowRepresentableDat |
|
|
|
|
computedStat = ComputedStat(Stat.NETRESULT, result?.net ?: 0.0, currency) |
|
|
|
|
) |
|
|
|
|
) |
|
|
|
|
rows.add(SeparatorRowRepresentable()) |
|
|
|
|
rows.add(SeparatorRow()) |
|
|
|
|
} |
|
|
|
|
SessionState.PAUSED -> { |
|
|
|
|
rows.add( |
|
|
|
|
@ -594,7 +594,7 @@ open class Session : RealmObject(), Savable, Editable, StaticRowRepresentableDat |
|
|
|
|
computedStat = ComputedStat(Stat.NETRESULT, result?.net ?: 0.0, currency) |
|
|
|
|
) |
|
|
|
|
) |
|
|
|
|
rows.add(SeparatorRowRepresentable()) |
|
|
|
|
rows.add(SeparatorRow()) |
|
|
|
|
} |
|
|
|
|
SessionState.FINISHED -> { |
|
|
|
|
rows.add( |
|
|
|
|
@ -621,7 +621,7 @@ open class Session : RealmObject(), Savable, Editable, StaticRowRepresentableDat |
|
|
|
|
// ) |
|
|
|
|
// ) |
|
|
|
|
// } |
|
|
|
|
rows.add(SeparatorRowRepresentable()) |
|
|
|
|
rows.add(SeparatorRow()) |
|
|
|
|
} |
|
|
|
|
else -> { |
|
|
|
|
} |
|
|
|
|
|