aboutsummaryrefslogtreecommitdiffhomepage
path: root/Brick/Widgets/DefnList.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Brick/Widgets/DefnList.hs')
-rw-r--r--Brick/Widgets/DefnList.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Brick/Widgets/DefnList.hs b/Brick/Widgets/DefnList.hs
index 1465964..016a522 100644
--- a/Brick/Widgets/DefnList.hs
+++ b/Brick/Widgets/DefnList.hs
@@ -55,7 +55,7 @@ defnList align attr defns = vBox $ line <$> defns
maxWidth = maximum $
map (\(x,y) -> length sep + length x + length y) defns
- maxLabelWidth = maximum $ map (\(x,y) -> length x) defns
+ maxLabelWidth = maximum $ map (\(x,_) -> length x) defns
sep = if align == AlignRight then ": " else ": "
labelAttr = maybe V.defAttr id attr