From 15da5fc702aa16e65a558d443e452188b8477e36 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 20 Mar 2017 09:10:20 -0400 Subject: [PATCH] CmdHistory: Table headers consistent --- src/commands/CmdHistory.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/CmdHistory.cpp b/src/commands/CmdHistory.cpp index cf4ec3e0f..8b1be1804 100644 --- a/src/commands/CmdHistory.cpp +++ b/src/commands/CmdHistory.cpp @@ -64,6 +64,7 @@ void CmdHistoryBase::outputGraphical (std::string &output) // Now build the view. Table view; + setHeaderUnderline (view); if (context.config.getBoolean ("color")) view.forceColor (); view.width (context.getWidth ()); @@ -196,6 +197,7 @@ template void CmdHistoryBase::outputTabular (std::string &output) { Table view; + setHeaderUnderline (view); if (context.config.getBoolean ("color")) view.forceColor (); view.width (context.getWidth ());