mirror of
https://github.com/xmonad/xmonad.git
synced 2025-08-01 20:51:55 -07:00
remove unneeded Ord constraint.
This commit is contained in:
@@ -463,7 +463,7 @@ delete w = sink w . delete' w
|
||||
|
||||
-- | Only temporarily remove the window from the stack, thereby not destroying special
|
||||
-- information saved in the Stackset
|
||||
delete' :: (Ord a, Eq s) => a -> StackSet i a s sd -> StackSet i a s sd
|
||||
delete' :: (Eq a, Eq s) => a -> StackSet i a s sd -> StackSet i a s sd
|
||||
delete' w s = s { current = removeFromScreen (current s)
|
||||
, visible = map removeFromScreen (visible s)
|
||||
, hidden = map removeFromWorkspace (hidden s) }
|
||||
|
Reference in New Issue
Block a user