diff --git a/XMonad/Actions/Navigation2D.hs b/XMonad/Actions/Navigation2D.hs index 1e0eaac4..1769204a 100644 --- a/XMonad/Actions/Navigation2D.hs +++ b/XMonad/Actions/Navigation2D.hs @@ -46,7 +46,6 @@ module XMonad.Actions.Navigation2D ( -- * Usage , sideNavigation , sideNavigationWithBias , hybridOf - , hybridNavigation , fullScreenRect , singleWindowRect , switchLayer @@ -359,10 +358,6 @@ hybridOf (N g1 s1) (N g2 s2) = N (max g1 g2) $ applyToBoth s1 s2 where applyToBoth f g a b c = f a b c <|> g a b c -{-# DEPRECATED hybridNavigation "Use hybridOf with lineNavigation and centerNavigation as arguments." #-} -hybridNavigation :: Navigation2D -hybridNavigation = hybridOf lineNavigation centerNavigation - -- | Stores the configuration of directional navigation. The 'Default' instance -- uses line navigation for the tiled layer and for navigation between screens, -- and center navigation for the float layer. No custom navigation strategies