Skip to content

Commit

Permalink
Fix setting writing
Browse files Browse the repository at this point in the history
  • Loading branch information
casperlamboo committed Nov 23, 2023
1 parent b931a9c commit 92ea208
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/WallsComputation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ void WallsComputation::generateWalls(SliceLayer* layer, SectionType section)
{
continue;
}
if (value.find(' ') != std::string::npos)
{
continue;
}
SettingsFile << key << "=" << value << std::endl;
}
SettingsFile.close();
Expand Down

0 comments on commit 92ea208

Please sign in to comment.