Explicitly declare width and height as doubles

This commit is contained in:
Paul Trudel 2023-08-11 18:18:36 +00:00
parent e615233ae8
commit d8bce66098

View File

@ -30,8 +30,8 @@ case class PresentationPage(
yOffset: Double = 0, yOffset: Double = 0,
widthRatio: Double = 100D, widthRatio: Double = 100D,
heightRatio: Double = 100D, heightRatio: Double = 100D,
width: Double = 1440, width: Double = 1440D,
height: Double = 1080 height: Double = 1080D
) )
object PresentationInPod { object PresentationInPod {