|
|
|
@ -238,9 +238,9 @@ class ReplayerAnimator(var handHistory: HandHistory, var export: Boolean) { |
|
|
|
|
|
|
|
|
|
|
|
val maxPlayerCards = this.handHistory.maxPlayerCards |
|
|
|
val maxPlayerCards = this.handHistory.maxPlayerCards |
|
|
|
val grid = when (this.handHistory.numberOfPlayers) { |
|
|
|
val grid = when (this.handHistory.numberOfPlayers) { |
|
|
|
2, 3 -> Pair(2, 3) |
|
|
|
2, 3 -> Pair(2.8f, 4f) |
|
|
|
9, 10 -> Pair(4, 5) |
|
|
|
9, 10 -> Pair(4f, 5f) |
|
|
|
else -> Pair(3, 4) |
|
|
|
else -> Pair(3.2f, 4.4f) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
val portrait = height > width |
|
|
|
val portrait = height > width |
|
|
|
|