aboutsummaryrefslogtreecommitdiffhomepage
path: root/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Main.hs b/Main.hs
index 7a60e79..5b71fd8 100644
--- a/Main.hs
+++ b/Main.hs
@@ -1,5 +1,6 @@
{-# LANGUAGE OverloadedStrings #-}
+import Control.Concurrent (forkFinally)
import Control.Monad (void)
import Data.Monoid
import qualified Data.Text as T
@@ -36,7 +37,7 @@ drawUI st = [ui]
, vLimit 6 $ C.center $ actionsBox
]
status = str $ case st^.stPageCount of
- Just n -> "Scanned " ++ show n ++ " pages"
+ Just n -> "Scanned " ++ show n ++ " pages"
Nothing -> "Ready to scan first page"
settingsBox = defnList AlignRight Nothing
[ ("run OCRmyPDF", if st^.stOCR then "yes" else "no")