Changed one phrase and one logging level

This commit is contained in:
Lukas Matena 2025-02-21 12:06:22 +01:00
parent 025e4698c8
commit b2fda0b25a
2 changed files with 2 additions and 4 deletions

View File

@ -738,9 +738,7 @@ RENDER_AGAIN:
const char *support_points_density = "support_points_density_relative";
float density = static_cast<const ConfigOptionInt*>(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;

View File

@ -288,7 +288,7 @@ std::vector<IconManager::Icons> IconManager::init(const std::vector<std::string>
}
void IconManager::release() {
BOOST_LOG_TRIVIAL(error) << "Not implemented yet";
BOOST_LOG_TRIVIAL(warning) << "Not implemented yet";
}
void priv::clear(IconManager::Icons &icons) {