mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-12 17:09:05 +08:00
Changed one phrase and one logging level
This commit is contained in:
parent
025e4698c8
commit
b2fda0b25a
@ -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;
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user