Skip to content

Commit

Permalink
Raft-extruder isn't nescesarily the adhesion extruder anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
rburema committed Jun 30, 2022
1 parent 925f940 commit 02cbe41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sliceDataStorage.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//Copyright (c) 2021 Ultimaker B.V.
//Copyright (c) 2022 Ultimaker B.V.
//CuraEngine is released under the terms of the AGPLv3 or higher.

#ifndef SLICE_DATA_STORAGE_H
Expand Down
4 changes: 2 additions & 2 deletions src/support.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,8 @@ Polygons AreaSupport::join(const SliceDataStorage& storage, const Polygons& supp
break;
case EPlatformAdhesion::RAFT:
{
const ExtruderTrain& raft_extruder = mesh_group_settings.get<ExtruderTrain&>("adhesion_extruder_nr");
adhesion_size = raft_extruder.settings.get<coord_t>("raft_margin");
const ExtruderTrain& raft_base_extruder = mesh_group_settings.get<ExtruderTrain&>("raft_base_extruder_nr");
adhesion_size = raft_base_extruder.settings.get<coord_t>("raft_margin");
break;
}
case EPlatformAdhesion::SKIRT:
Expand Down

0 comments on commit 02cbe41

Please sign in to comment.