mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 04:25:57 +08:00
Fixed a bug in Cut gizmo - contour width was not updating correctly
This commit is contained in:
parent
595ef873ad
commit
d2c8d628b9
@ -22,7 +22,7 @@ namespace GUI {
|
|||||||
|
|
||||||
void MeshClipper::set_behaviour(bool fill_cut, double contour_width)
|
void MeshClipper::set_behaviour(bool fill_cut, double contour_width)
|
||||||
{
|
{
|
||||||
if (fill_cut != m_fill_cut || is_approx(contour_width, m_contour_width))
|
if (fill_cut != m_fill_cut || ! is_approx(contour_width, m_contour_width))
|
||||||
m_result.reset();
|
m_result.reset();
|
||||||
m_fill_cut = fill_cut;
|
m_fill_cut = fill_cut;
|
||||||
m_contour_width = contour_width;
|
m_contour_width = contour_width;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user