diff options
author | Devin Mullins <me@twifkak.com> | 2008-05-06 09:42:35 +0200 |
---|---|---|
committer | Devin Mullins <me@twifkak.com> | 2008-05-06 09:42:35 +0200 |
commit | d9b2e05dae457403c8128afb6cc91d3c2b27cd23 (patch) | |
tree | 79bad13362db267637e43609acf7b2e2f896aff2 | |
parent | 225906c7dbe50495a0094c1eb45ec0c5bb87092f (diff) | |
download | XMonadContrib-d9b2e05dae457403c8128afb6cc91d3c2b27cd23.tar.gz XMonadContrib-d9b2e05dae457403c8128afb6cc91d3c2b27cd23.tar.xz XMonadContrib-d9b2e05dae457403c8128afb6cc91d3c2b27cd23.zip |
X.A.WindowNavigation: minor doco changes
darcs-hash:20080506074235-78224-3d9e08f7b924efd9410d16384ef1083b62f7f579.gz
-rw-r--r-- | XMonad/Actions/WindowNavigation.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Actions/WindowNavigation.hs b/XMonad/Actions/WindowNavigation.hs index 21d2a68..8978c88 100644 --- a/XMonad/Actions/WindowNavigation.hs +++ b/XMonad/Actions/WindowNavigation.hs @@ -11,7 +11,7 @@ -- use that one for now. -- -- WindowNavigation lets you assign keys to move up/down/left/right, based on --- actual window geometry, rather than just going j/k on the stack. +-- actual cartesian window coordinates, rather than just going j/k on the stack. -- ----------------------------------------------------------------------------- @@ -93,7 +93,7 @@ navigable d pt = sortby d . filter (inr d (fromPoint pt) . snd) -- adjusted based on screen position relative to the current screen, because I'm -- bad like that. -- TODO: only the visible windows --- TODO: adjust rectangles based on screen position :P +-- TODO: adjust rectangles based on screen position? (perhaps this is already handled) windowRects :: X [(Window, Rectangle)] windowRects = do dpy <- asks display |