mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
fix a small bug of bridge density
Signed-off-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
parent
40e9424bdf
commit
8aad9a844a
1 changed files with 3 additions and 2 deletions
|
@ -782,7 +782,8 @@ bool PrintObject::invalidate_state_by_config_options(
|
|||
|| opt_key == "ensure_vertical_shell_thickness"
|
||||
|| opt_key == "bridge_angle"
|
||||
//BBS
|
||||
|| opt_key == "internal_bridge_support_thickness") {
|
||||
|| opt_key == "internal_bridge_support_thickness"
|
||||
|| opt_key == "bridge_density") {
|
||||
steps.emplace_back(posPrepareInfill);
|
||||
} else if (
|
||||
opt_key == "top_surface_pattern"
|
||||
|
@ -830,7 +831,7 @@ bool PrintObject::invalidate_state_by_config_options(
|
|||
|| opt_key == "overhang_speed_classic") {
|
||||
steps.emplace_back(posPerimeters);
|
||||
steps.emplace_back(posSupportMaterial);
|
||||
} else if (opt_key == "bridge_flow" || opt_key == "bridge_density") {
|
||||
} else if (opt_key == "bridge_flow") {
|
||||
if (m_config.support_top_z_distance > 0.) {
|
||||
// Only invalidate due to bridging if bridging is enabled.
|
||||
// If later "support_top_z_distance" is modified, the complete PrintObject is invalidated anyway.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue