From e681ba3218fe35650ff89eec7231b7bf99e2f935 Mon Sep 17 00:00:00 2001 From: whitequark Date: Thu, 17 Nov 2016 10:07:33 +0000 Subject: [PATCH] Rephrase the error message for sketch in workplane creation. The old message was confusing because it seemingly talked about a point that was orthogonal to coordinate axes. --- src/group.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/group.cpp b/src/group.cpp index 6f1b9e7..24790a3 100644 --- a/src/group.cpp +++ b/src/group.cpp @@ -136,10 +136,9 @@ void Group::MenuGroup(Command id) { } else { Error("Bad selection for new sketch in workplane. This " "group can be created with:\n\n" - " * a point (orthogonal to coordinate axes, " - "through the point)\n" - " * a point and two line segments (parallel to the " - "lines, through the point)\n" + " * a point (through the point, orthogonal to coordinate axes)\n" + " * a point and two line segments (through the point, " + "parallel to the lines)\n" " * a workplane (copy of the workplane)\n"); return; }