summaryrefslogtreecommitdiffhomepage
path: root/UI.hs
diff options
context:
space:
mode:
Diffstat (limited to 'UI.hs')
-rw-r--r--UI.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/UI.hs b/UI.hs
index a97f3c1..279f6b9 100644
--- a/UI.hs
+++ b/UI.hs
@@ -3,7 +3,7 @@
- Licensed under the GNU AGPL version 3 or higher.
-}
-module UI where
+module UI (module UI, module Types.UI) where
import Types.UI
import Control.Monad
@@ -11,7 +11,7 @@ import UI.Zenity
import UI.Readline
availableUIs :: IO [UI]
-availableUIs = filterM isAvailable [zenityUI, readlineUI]
+availableUIs = filterM isAvailable [readlineUI, zenityUI]
selectUI :: Bool -> IO UI
selectUI needgui