Fixes text clear

hh
Laurent 5 years ago
parent 2d9032c64e
commit 39fc5bc5f6
  1. 2
      app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/replayer/ReplayerConfiguration.kt

@ -38,7 +38,7 @@ class ReplayerConfiguration(var handHistory: HandHistory) {
data class TextPoint(var x: Float, var y: Float, var fontSize: Float) {
fun toRect(): RectF {
val wRatio = 1.5f
return RectF(x - wRatio * fontSize, y - fontSize, x + wRatio * fontSize, y)
return RectF(x - wRatio * fontSize, y - fontSize, x + wRatio * fontSize, y + fontSize * 0.1f)
}
}

Loading…
Cancel
Save