From 7fd821b54c9fbd88579370b46876abc6b60742b4 Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Thu, 14 Oct 2021 19:14:07 +0300 Subject: remove unnecessary parentheses --- lib/LaNinpreConfig.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3