Fix ghost image on track panel for real this time

This commit is contained in:
Leland Lucius 2015-08-19 15:37:52 -05:00
parent a80c20c9b2
commit 1f6ba9160c

View File

@ -714,11 +714,11 @@ void NumericConverter::ParseFormatString( const wxString & format)
for(i=0; i<mFields.GetCount(); i++) {
mFields[i].pos = pos;
pos += mFields[i].digits;
for(j=0; j<mFields[i].digits; j++) {
mDigits.Add(DigitInfo(i, j, pos, wxRect()));
mValueTemplate += wxT("0");
mValueMask += wxT("0");
pos++;
}
pos += mFields[i].label.Length();