mirror of
https://github.com/jtdaugherty/brick.git
synced 2024-11-29 10:54:48 +03:00
Core: use infix fmap
This commit is contained in:
parent
7d0a87f102
commit
bed6304cdd
@ -995,15 +995,15 @@ cropBottomTo rows p =
|
||||
-- | When rendering the specified widget, also register a cursor
|
||||
-- positioning request using the specified name and location.
|
||||
showCursor :: n -> Location -> Widget n -> Widget n
|
||||
showCursor n cloc p = Widget (hSize p) (vSize p) $
|
||||
fmap (cursorsL %~ (CursorLocation cloc (Just n) True:)) (render p)
|
||||
showCursor n cloc p = Widget (hSize p) (vSize p) $
|
||||
(cursorsL %~ (CursorLocation cloc (Just n) True:)) <$> (render p)
|
||||
|
||||
-- | When rendering the specified widget, also register a cursor
|
||||
-- positioning request using the specified name and location.
|
||||
-- The cursor will only be positioned but not made visible.
|
||||
putCursor :: n -> Location -> Widget n -> Widget n
|
||||
putCursor n cloc p = Widget (hSize p) (vSize p) $
|
||||
fmap (cursorsL %~ (CursorLocation cloc (Just n) False:)) (render p)
|
||||
(cursorsL %~ (CursorLocation cloc (Just n) False:)) <$> (render p)
|
||||
|
||||
hRelease :: Widget n -> Maybe (Widget n)
|
||||
hRelease p =
|
||||
|
Loading…
Reference in New Issue
Block a user