Always list part quantity in BrickLink export.

This commit is contained in:
Leonardo Zide 2019-06-05 14:37:00 -07:00
parent 617a667521
commit 1ae3cfa8b0

View file

@ -1158,12 +1158,8 @@ void Project::ExportBrickLink()
sprintf(Line, " <ITEMID>%s</ITEMID>\n", FileName);
BrickLinkFile.WriteLine(Line);
int Count = ColorIt.second;
if (Count > 1)
{
sprintf(Line, " <MINQTY>%d</MINQTY>\n", Count);
BrickLinkFile.WriteLine(Line);
}
sprintf(Line, " <MINQTY>%d</MINQTY>\n", ColorIt.second);
BrickLinkFile.WriteLine(Line);
int Color = lcGetBrickLinkColor(ColorIt.first);
if (Color)