[xmonad] Issue 358 in xmonad: Accordion layout in xmonad contrib reverses the order of the windows above the focused one

codesite-noreply at google.com codesite-noreply at google.com
Wed Jan 20 05:00:28 EST 2010


Status: New
Owner: ----

New issue 358 by rsaarelm: Accordion layout in xmonad contrib reverses the  
order of the windows above the focused one
http://code.google.com/p/xmonad/issues/detail?id=358

Use Accordion layout with more than two windows, and when you get two or
more windows above the focused one, they are shown in reverse order. To
fix, just change

      where
        ups    = W.up ws
        dns    = W.down ws

to

      where
        ups    = reverse $ W.up ws
        dns    = W.down ws

in Accordion.hs.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings


More information about the xmonad mailing list