Merge pull request #2539 from mimimi085181/gecko-codes-line-ending-fix

Fix line ending bug for downloaded gecko codes
This commit is contained in:
comex 2015-06-06 23:12:39 -04:00
commit 9f2d684802
1 changed files with 4 additions and 2 deletions

View File

@ -192,8 +192,10 @@ void CodeConfigPanel::DownloadCodes(wxCommandEvent&)
while ((std::getline(ss, line).good()))
{
// empty line
if (0 == line.size() || line == "\r" || line == "\n") // \r\n checks might not be needed
// Remove \r at the end of the line for files using windows line endings, std::getline only removes \n
line = StripSpaces(line);
if (line.empty())
{
// add the code
if (gcode.codes.size())