Changed error message for "Screw" tool in Edit Mesh into:

"You have to select a string of connected vertices too"

(Was: "You have to select a Curve").
This commit is contained in:
2006-06-24 11:30:19 +00:00
parent a9a2c19c1f
commit ffff27c897

View File

@@ -883,7 +883,7 @@ void screw_mesh(int steps, int turns)
eve= eve->next; eve= eve->next;
} }
if(v1==0 || v2==0) { if(v1==0 || v2==0) {
error("No curve is selected"); error("You have to select a string of connected vertices too");
return; return;
} }