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 19e5ed6313
commit 29e4b21a8b

View file

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