Skip to content

Commit

Permalink
Fix the wrong extrusion amount for infill when using a odd wall thick…
Browse files Browse the repository at this point in the history
…ness.
  • Loading branch information
daid committed Apr 8, 2013
1 parent 1505743 commit ab8de65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cura/slice/cura_sf/fabmetheus_utilities/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def getProfileInformation():
},'inset': {
'Add_Custom_Code_for_Temperature_Reading': "False",
'Infill_in_Direction_of_Bridge': ifSettingAboveZero('fill_density'),
'Infill_Width': storedSettingFloat("nozzle_size"),
'Infill_Width': calculateEdgeWidth,
'Loop_Order_Choice': DEFSET,
'Overlap_Removal_Width_over_Perimeter_Width_ratio': DEFSET,
'Turn_Extruder_Heater_Off_at_Shut_Down': "False",
Expand Down Expand Up @@ -162,7 +162,7 @@ def getProfileInformation():
'Line': ifSettingIs('infill_type', 'Line'),
'Infill_Perimeter_Overlap_ratio': storedPercentSetting('fill_overlap'),
'Infill_Solidity_ratio': storedPercentSetting('fill_density'),
'Infill_Width': storedSettingFloat("nozzle_size"),
'Infill_Width': calculateEdgeWidth,
'Sharpest_Angle_degrees': DEFSET,
'Solid_Surface_Thickness_layers': calculateSolidLayerCount,
'Start_From_Choice': DEFSET,
Expand Down

0 comments on commit ab8de65

Please sign in to comment.