ColScheduled: Fixed bug where the wrong column label was used

This commit is contained in:
Paul Beckingham 2016-12-31 10:32:18 -05:00
parent a9063284d9
commit f3b28374c2

View file

@ -42,7 +42,7 @@ void ColumnScheduled::setStyle (const std::string& value)
{
_style = value;
if (_style == "countdown" && _label == STRING_COLUMN_LABEL_DUE)
if (_style == "countdown" && _label == STRING_COLUMN_LABEL_SCHED)
_label = STRING_COLUMN_LABEL_COUNT;
}