From c1160c60a7adc5feeb6b714b697476c411618d8e Mon Sep 17 00:00:00 2001 From: peteruithoven Date: Wed, 23 Oct 2013 18:46:13 +0200 Subject: [PATCH] Warning text improvement --- js_src/gcodeGenerating.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js_src/gcodeGenerating.js b/js_src/gcodeGenerating.js index d75bc23..0ca084a 100644 --- a/js_src/gcodeGenerating.js +++ b/js_src/gcodeGenerating.js @@ -142,7 +142,7 @@ function generate_gcode() { console.log("pointsToPrint: ",pointsToPrint); if(pointsToPrint > MAX_POINTS_TO_PRINT) { - alert("Sorry, your doodle too complex and / or to high"); + alert("Sorry, your doodle is too complex or too high. Please try to simplify it."); console.log("ERROR: to many points too convert to gcode"); return []; }