
17 Jun
2008
17 Jun
'08
6:47 a.m.
On Mon, Jun 16, 2008 at 09:23:50PM +0200, Jes?s Guerrero wrote:
Hi, I found a solution for this one, in case anyone has the same problem. Good to know, thanks for posting the solution (in case I run across something similar one day).
nwnComposeRect = W.RationalRect 0.0 0.0 1.0 1.0
FWIW, you should be able to drop the ".0"s, and just say `0 0 1 1'. $ ghci ~/.xmonad/xmonad.hs GHCi, version 6.8.2: http://www.haskell.org/ghc/ :? for help Loading package base ... linking ... done. Ok, modules loaded: Main. Prelude Main> XMonad.StackSet.RationalRect 0 0 1 1 ... RationalRect (0%1) (0%1) (1%1) (1%1) Prelude Main> :q