From 5512d3bab1d96226a96b22f94d0bf66ed597decd Mon Sep 17 00:00:00 2001 From: daid Date: Wed, 18 Apr 2012 14:50:52 +0200 Subject: [PATCH] Maybe this fixes the first run wizard calibration of 100mm extrusion problems. --- Cura/gui/configWizard.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.") -- 2.30.2