CmdReportDay: Modified active interval indicator to be a single character

This commit is contained in:
Paul Beckingham 2016-04-26 23:42:16 -04:00
parent 21809e1724
commit 4f77f336f3

View file

@ -226,13 +226,10 @@ static void renderInterval (
// whatever fits.
if (! track.range.ended ())
{
int space = 3;
if (width < 3)
space = width;
line2.add (std::string (space, '.'),
width - space,
colorTrack);
/*
line2.add ("+", width - 1, colorTrack);
*/
line2.add ("", width - 1, colorTrack);
}
}
}