- The 'verbose' configuration variable now accepts a specific list of items to
  be verbose about.  See taskrc(5).
This commit is contained in:
Paul Beckingham
2011-05-14 15:38:03 -04:00
parent 557440db0c
commit 14bea5e1b4
6 changed files with 17 additions and 9 deletions

View File

@@ -147,7 +147,8 @@ void Column::renderHeader (
int width,
Color& color)
{
if (_label != "")
if (context.verbose ("label") &&
_label != "")
{
// Create a basic label.
std::string header;