aboutsummaryrefslogtreecommitdiffstats
path: root/Commands.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Commands.hs')
-rw-r--r--Commands.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Commands.hs b/Commands.hs
index 524eadc..4916807 100644
--- a/Commands.hs
+++ b/Commands.hs
@@ -27,7 +27,7 @@ module XMonadContrib.Commands (
import XMonad
import Operations
-import StackSet hiding (sink)
+import StackSet
import XMonadContrib.Dmenu (dmenu)
import {-# SOURCE #-} Config (workspaces)
@@ -91,7 +91,7 @@ defaultCommands = workspaceCommands ++ screenCommands
, ("swap-up", windows $ swapUp)
, ("swap-down", windows $ swapDown)
, ("swap-master", windows $ swapMaster)
- , ("sink", withFocused sink)
+ , ("sink", withFocused $ windows . sink)
, ("quit-wm", io $ exitWith ExitSuccess)
]