Get to a compilable state

Everything seems to be working (including the plater). I am not seeing any graphical issues
This commit is contained in:
Ocraftyone
2023-11-08 06:33:32 -05:00
parent dc062f1a1a
commit 03754b5213
18 changed files with 149 additions and 147 deletions
+2 -1
View File
@@ -478,7 +478,8 @@ static struct DynamicFilamentList : DynamicList
std::string type;
wxGetApp().preset_bundle->filaments.find_preset(presets[i])->get_filament_type(type);
str << type;
items.push_back({str, icons[i]});
wxBitmap bmp = icons[i]->GetBitmapFor(wxGetApp().mainframe); //OcraftyoneTODO: using conversion rather than changing type of items vector
items.push_back({str, &bmp});
}
DynamicList::update();
}