mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 12:05:54 +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";
|
const char *support_points_density = "support_points_density_relative";
|
||||||
float density = static_cast<const ConfigOptionInt*>(get_config_options({support_points_density})[0])->value;
|
float density = static_cast<const ConfigOptionInt*>(get_config_options({support_points_density})[0])->value;
|
||||||
float old_density = density;
|
float old_density = density;
|
||||||
wxString tooltip = _L("Change amount of the generated support points.\n"
|
wxString tooltip = _L("Change amount of generated support points.");
|
||||||
"Smaller value means less points and\n"
|
|
||||||
"larger value means more points.");
|
|
||||||
if (m_imgui->slider_float("##density", &density, 50.f, 200.f, "%.f %%", 1.f, false, tooltip)){
|
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.
|
if (density < 10.f) // not neccessary, but lower value seems pointless. Zero cause issues inside algorithms.
|
||||||
density = 10.f;
|
density = 10.f;
|
||||||
|
@ -288,7 +288,7 @@ std::vector<IconManager::Icons> IconManager::init(const std::vector<std::string>
|
|||||||
}
|
}
|
||||||
|
|
||||||
void IconManager::release() {
|
void IconManager::release() {
|
||||||
BOOST_LOG_TRIVIAL(error) << "Not implemented yet";
|
BOOST_LOG_TRIVIAL(warning) << "Not implemented yet";
|
||||||
}
|
}
|
||||||
|
|
||||||
void priv::clear(IconManager::Icons &icons) {
|
void priv::clear(IconManager::Icons &icons) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user