diff options
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Layout/Gaps.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Layout/Gaps.hs b/XMonad/Layout/Gaps.hs index a05bdbb..7734836 100644 --- a/XMonad/Layout/Gaps.hs +++ b/XMonad/Layout/Gaps.hs @@ -93,9 +93,9 @@ data Gaps a = Gaps GapSpec [Direction] -- | Messages which can be sent to a gap modifier. data GapMessage = ToggleGaps -- ^ Toggle all gaps. - | ToggleGap Direction -- ^ Toggle a single gap. - | IncGap Int Direction -- ^ Increase a gap by a certain number of pixels. - | DecGap Int Direction -- ^ Decrease a gap. + | ToggleGap !Direction -- ^ Toggle a single gap. + | IncGap !Int !Direction -- ^ Increase a gap by a certain number of pixels. + | DecGap !Int !Direction -- ^ Decrease a gap. deriving (Typeable) instance Message GapMessage |