From e9688c759354de3f4f09a5c96623e6aee14626c6 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 20 Mar 2017 09:12:09 -0400 Subject: [PATCH] CmdSummary: Table headers consistent --- src/commands/CmdSummary.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/commands/CmdSummary.cpp b/src/commands/CmdSummary.cpp index 0ecdbe5f2..e11efec84 100644 --- a/src/commands/CmdSummary.cpp +++ b/src/commands/CmdSummary.cpp @@ -138,6 +138,7 @@ int CmdSummary::execute (std::string& output) view.add (STRING_CMD_SUMMARY_AVG_AGE, false); view.add (STRING_CMD_SUMMARY_COMPLETE, false); view.add ("0% 100%"); + setHeaderUnderline (view); Color bar_color; Color bg_color; @@ -145,9 +146,6 @@ int CmdSummary::execute (std::string& output) { bar_color = Color (context.config.get ("color.summary.bar")); bg_color = Color (context.config.get ("color.summary.background")); - - Color label (context.config.get ("color.label")); - view.colorHeader (label); } int barWidth = 30;