chiark / gitweb /
Fix typo.
authordaid <daid303@gmail.com>
Thu, 3 Oct 2013 08:50:26 +0000 (10:50 +0200)
committerdaid <daid303@gmail.com>
Thu, 3 Oct 2013 08:50:26 +0000 (10:50 +0200)
Cura/util/profile.py

index 679b89140d0f5f5b6cb597dbdd060cf9a0ba9fb8..36d05c6f952977ace676d37c6508e20e1d5bb6c0 100644 (file)
@@ -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"))