Allows decimal for tip inputs

od
Laurent 6 years ago
parent 6f539a277f
commit 6dc38880a9
  1. 4
      app/src/main/java/net/pokeranalytics/android/ui/view/rowrepresentable/SessionRow.kt

@ -296,8 +296,8 @@ enum class SessionRow : RowRepresentable {
RowRepresentableEditDescriptor(sb ?: 0.0), RowRepresentableEditDescriptor(sb ?: 0.0),
RowRepresentableEditDescriptor(bb ?: 0.0), RowRepresentableEditDescriptor(bb ?: 0.0),
RowRepresentableEditDescriptor(tips ?: 0.0), RowRepresentableEditDescriptor(tips ?: 0.0),
RowRepresentableEditDescriptor("", inputType = InputType.TYPE_CLASS_NUMBER), RowRepresentableEditDescriptor("", inputType = InputType.TYPE_CLASS_NUMBER or InputType.TYPE_NUMBER_FLAG_DECIMAL),
RowRepresentableEditDescriptor("", inputType = InputType.TYPE_CLASS_NUMBER) RowRepresentableEditDescriptor("", inputType = InputType.TYPE_CLASS_NUMBER or InputType.TYPE_NUMBER_FLAG_DECIMAL)
) )
} }
TOURNAMENT_TYPE -> { TOURNAMENT_TYPE -> {

Loading…
Cancel
Save