diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index 4a74f655da..af71c23039 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -738,9 +738,7 @@ RENDER_AGAIN: const char *support_points_density = "support_points_density_relative"; float density = static_cast(get_config_options({support_points_density})[0])->value; float old_density = density; - wxString tooltip = _L("Change amount of the generated support points.\n" - "Smaller value means less points and\n" - "larger value means more points."); + wxString tooltip = _L("Change amount of generated support points."); if (m_imgui->slider_float("##density", &density, 50.f, 200.f, "%.f %%", 1.f, false, tooltip)){ if (density < 10.f) // not neccessary, but lower value seems pointless. Zero cause issues inside algorithms. density = 10.f; diff --git a/src/slic3r/GUI/IconManager.cpp b/src/slic3r/GUI/IconManager.cpp index 8343530801..1adf887ad5 100644 --- a/src/slic3r/GUI/IconManager.cpp +++ b/src/slic3r/GUI/IconManager.cpp @@ -288,7 +288,7 @@ std::vector IconManager::init(const std::vector } void IconManager::release() { - BOOST_LOG_TRIVIAL(error) << "Not implemented yet"; + BOOST_LOG_TRIVIAL(warning) << "Not implemented yet"; } void priv::clear(IconManager::Icons &icons) {