summaryrefslogtreecommitdiffhomepage
path: root/UI/Zenity.hs
diff options
context:
space:
mode:
Diffstat (limited to 'UI/Zenity.hs')
-rw-r--r--UI/Zenity.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/UI/Zenity.hs b/UI/Zenity.hs
index 3c3f313..b74631f 100644
--- a/UI/Zenity.hs
+++ b/UI/Zenity.hs
@@ -42,12 +42,12 @@ myShowError desc = bracket go cleanup (\_ -> return ())
_ <- waitZenity h
return ()
-myPromptQuestion :: Title -> Desc -> IO Bool
-myPromptQuestion title desc = do
+myPromptQuestion :: Title -> Desc -> Question -> IO Bool
+myPromptQuestion title desc question = do
h <- runZenity
[ "--question"
, "--title", title
- , "--text", desc
+ , "--text", desc ++ "\n" ++ question
]
(_, ok) <- waitZenity h
return ok