From: daid Date: Wed, 18 Apr 2012 12:50:52 +0000 (+0200) Subject: Maybe this fixes the first run wizard calibration of 100mm extrusion problems. X-Git-Tag: RC3~58 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5512d3bab1d96226a96b22f94d0bf66ed597decd;p=cura.git Maybe this fixes the first run wizard calibration of 100mm extrusion problems. --- diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index 151a0839..8edaf410 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -97,7 +97,6 @@ class MachineSelectPage(InfoPage): profile.putPreference('machine_width', '205') profile.putPreference('machine_depth', '205') profile.putPreference('machine_height', '200') - profile.putPreference('steps_per_e', '865.888') profile.putProfileSetting('nozzle_size', '0.4') profile.putProfileSetting('machine_center_x', '100') profile.putProfileSetting('machine_center_y', '100') @@ -323,6 +322,9 @@ class UltimakerCalibrationPage(InfoPage): class UltimakerCalibrateStepsPerEPage(InfoPage): def __init__(self, parent): super(UltimakerCalibrateStepsPerEPage, self).__init__(parent, "Ultimaker Calibration") + + if profile.getPreference('steps_per_e') == '0': + profile.putPreference('steps_per_e', '865.888') self.AddText("Calibrating the Steps Per E requires some manual actions.") self.AddText("First remove any filament from your machine.")