diff --git a/phraskell.cabal b/phraskell.cabal
--- a/phraskell.cabal
+++ b/phraskell.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                phraskell
-version:             0.1.2
+version:             0.1.2.1
 synopsis:            A fractal viewer.
 description:         A fractal viewer with some cool features like changing colorscheme, screenshot, buddhabrot, and so on.
 homepage:            https://github.com/skypers/phraskell
@@ -21,11 +21,12 @@
 source-repository this
   type:                git
   location:            git://github.com/skypers/phraskell.git
-  tag:                 0.1.2
+  tag:                 0.1.2.1
 
 executable phraskell
   main-is:             Phraskell.hs
   other-modules:       Application Default Fractal FractalModel GUI Render UI UI.Impl Viewer
   build-depends:       base ==4.6.*, SDL ==0.6.*, mtl ==2.1.*, transformers ==0.3.*
   hs-source-dirs:      src
+  ghc-options:         -O2 -Wall -funbox-strict-fields
   ghc-prof-options:    -O2 -Wall -prof -auto-all -caf-all -rtsopts
diff --git a/src/Phraskell.hs b/src/Phraskell.hs
--- a/src/Phraskell.hs
+++ b/src/Phraskell.hs
@@ -105,4 +105,5 @@
                 (mx,my,_) <- getMouseState
                 when (appVisibleGUI app) $ renderGUI app mx my
                 SDL.flip $ appScreen app
+                delay 10
                 loop newApp
