Updated Prusa3D profiles, added an MK2.5 MMU2 wizard image (as of now

it is just a copy of the MK3 MMU2),
changed default brim width on the platter main page (the shortcut checkbox)
to 5mm.
This commit is contained in:
bubnikv
2018-10-23 12:42:05 +02:00
parent b429b39abe
commit 49cfa5c759
4 changed files with 195 additions and 29 deletions

View File

@@ -827,7 +827,7 @@ void add_frequently_changed_parameters(wxWindow* parent, wxBoxSizer* sizer, wxFl
double brim_width = config->opt_float("brim_width");
if (boost::any_cast<bool>(value) == true)
{
new_val = m_brim_width == 0.0 ? 10 :
new_val = m_brim_width == 0.0 ? 5 :
m_brim_width < 0.0 ? m_brim_width * (-1) :
m_brim_width;
}