diff options
| -rw-r--r-- | lib/LaNinpreConfig.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LaNinpreConfig.hs b/lib/LaNinpreConfig.hs index 2d85c91..92df432 100644 --- a/lib/LaNinpreConfig.hs +++ b/lib/LaNinpreConfig.hs @@ -380,7 +380,7 @@ mpvGeometry :: RealFrac a -> a -- ^ relative width of window -> String -mpvGeometry h w = " --geometry=" ++ (show pw) ++ "x" ++ (show ph) +mpvGeometry h w = " --geometry=" ++ show pw ++ "x" ++ show ph where pw = ceiling (1920 * w) ph = ceiling (1080 * h) |
