1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-13 08:24:27 +00:00

Fixed a typo from the last commit, fixed one compilation warning.

This commit is contained in:
bubnikv
2019-01-09 16:05:36 +01:00
parent c258375fe2
commit 0222492e29
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -747,7 +747,7 @@ void GUI_App::load_current_presets()
void GUI_App::MacOpenFiles(const wxArrayString &fileNames)
{
std::vector<std::string> files;
for (size_t i = 0; i < fileNames.Len(); ++ i)
for (size_t i = 0; i < fileNames.GetCount(); ++ i)
files.emplace_back(fileNames[i].ToUTF8().data());
this->plater()->load_files(files, true, true);
}