remove unnecessary parentheses
la-ninpre leobrekalini@gmail.com
Thu, 14 Oct 2021 19:14:07 +0300
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
lib/LaNinpreConfig.hs
→
lib/LaNinpreConfig.hs
@@ -380,7 +380,7 @@ => a -- ^ relative height of window
-> 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)