Skip to content

Commit

Permalink
Fixed an error in Fan Tower post-processing
Browse files Browse the repository at this point in the history
  • Loading branch information
kartchnb committed Aug 21, 2022
1 parent 6d58bdc commit 9c6ff29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FanTowerController.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ def _postProcess(self, gcode):
''' This method is called to post-process the gcode before it is sent to the printer or disk '''

# Read the parameters from the dialog
startPercent = float(self._dialog.property('startPercent'))
percentChange = float(self._dialog.property('percentChange'))
startPercent = float(self.startPercentStr)
percentChange = float(self.percentChangeStr)

# Call the post-processing script
gcode = FanTower_PostProcessing.execute(gcode, startPercent, percentChange, self._sectionLayers, self._baseLayers)
Expand Down

0 comments on commit 9c6ff29

Please sign in to comment.