aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2007-10-15 18:15:29 +0200
committerDavid Roundy <droundy@darcs.net>2007-10-15 18:15:29 +0200
commite31487b3b48021182d53c4ce55aa962ea0b6d4b9 (patch)
tree840b7f24917b3c83e7a364811b02a3707a9363f2
parentef84d2adc1964b9e9318538430165c5273b9636d (diff)
downloadXMonadContrib-e31487b3b48021182d53c4ce55aa962ea0b6d4b9.tar.gz
XMonadContrib-e31487b3b48021182d53c4ce55aa962ea0b6d4b9.tar.xz
XMonadContrib-e31487b3b48021182d53c4ce55aa962ea0b6d4b9.zip
fix float bug in CopyWindow.
darcs-hash:20071015161529-72aca-22af3affff9166a8f8e4f53f652363be5247f2a7.gz
-rw-r--r--CopyWindow.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CopyWindow.hs b/CopyWindow.hs
index 23cadb8..e23e35b 100644
--- a/CopyWindow.hs
+++ b/CopyWindow.hs
@@ -76,4 +76,4 @@ kill1 = do ss <- gets windowset
whenJust (peek ss) $ \w -> if member w $ delete'' w ss
then windows $ delete'' w
else kill
- where delete'' w = sink w . modify Nothing (filter (/= w))
+ where delete'' w = modify Nothing (filter (/= w))