From: daid Date: Thu, 3 Oct 2013 08:50:26 +0000 (+0200) Subject: Fix typo. X-Git-Tag: 13.10~26 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=498518cc94f98baf7de2d85d04f27f31bdc560fd;p=cura.git Fix typo. --- diff --git a/Cura/util/profile.py b/Cura/util/profile.py index 679b8914..36d05c6f 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -387,7 +387,7 @@ setting('extruder_head_size_max_y', '0.0', float, 'machine', 'hidden').setLabel( setting('extruder_head_size_height', '0.0', float, 'machine', 'hidden').setLabel(_("Printer gantry height (mm)"), _("The height of the gantry holding up the printer head. If an object is higher then this then you cannot print multiple objects one for one. 60mm for an Ultimaker.")) validators.warningAbove(settingsDictionary['filament_flow'], 150, _("More flow then 150% is rare and usually not recommended.")) -validators.warningBelow(settingsDictionary['filament_flow'], 50, _("More flow then 50% is rare and usually not recommended.")) +validators.warningBelow(settingsDictionary['filament_flow'], 50, _("Less flow then 50% is rare and usually not recommended.")) validators.warningAbove(settingsDictionary['layer_height'], lambda : (float(getProfileSetting('nozzle_size')) * 80.0 / 100.0), _("Thicker layers then %.2fmm (80%% nozzle size) usually give bad results and are not recommended.")) validators.wallThicknessValidator(settingsDictionary['wall_thickness']) validators.warningAbove(settingsDictionary['print_speed'], 150.0, _("It is highly unlikely that your machine can achieve a printing speed above 150mm/s"))