From f27b567f5c92b6f343ac4ea54b7fbd8a7078bd0b Mon Sep 17 00:00:00 2001 From: Jonathan Westhues Date: Mon, 3 May 2010 21:13:35 -0800 Subject: [PATCH] Note when an entity is construction, when we describe it in the text window. [git-p4: depot-paths = "//depot/solvespace/": change = 2136] --- describescreen.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/describescreen.cpp b/describescreen.cpp index 08dcdb30..9c9d80e6 100644 --- a/describescreen.cpp +++ b/describescreen.cpp @@ -204,6 +204,9 @@ void TextWindow::DescribeSelection(void) { } else { Printf(false, "%FtIN STYLE%E none"); } + if(e->construction) { + Printf(false, "%FtCONSTRUCTION"); + } } else if(gs.n == 2 && gs.points == 2) { Printf(false, "%FtTWO POINTS"); Vector p0 = SK.GetEntity(gs.point[0])->PointGetNum();