From 88879d352eb4ed8840b37b00f35c3f3bc83cba90 Mon Sep 17 00:00:00 2001 From: whitequark Date: Fri, 24 May 2019 12:33:41 +0000 Subject: [PATCH] =?UTF-8?q?Show=20Degrees=20of=20Freedom=20=E2=86=92=20Sho?= =?UTF-8?q?w=20Underconstrained=20Points?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clarify the name of the command, as the old name is not strictly correct. E.g. consider a vertical line with a midpoint constraint to origin has 1 DOF, but 2 highlights are shown. Conversely, a single datum point has 2 DOF, but 1 highlight is shown. --- src/graphicswin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphicswin.cpp b/src/graphicswin.cpp index 7e46b4aa..0571027f 100644 --- a/src/graphicswin.cpp +++ b/src/graphicswin.cpp @@ -163,7 +163,7 @@ const MenuEntry Menu[] = { { 1, N_("Show &Naked Edges"), Command::NAKED_EDGES, C|S|'n', KN, mAna }, { 1, N_("Show &Center of Mass"), Command::CENTER_OF_MASS, C|S|'c', KN, mAna }, { 1, NULL, Command::NONE, 0, KN, NULL }, -{ 1, N_("Show Degrees of &Freedom"), Command::SHOW_DOF, C|S|'f', KN, mAna }, +{ 1, N_("Show &Underconstrained Points"), Command::SHOW_DOF, C|S|'f', KN, mAna }, { 1, NULL, Command::NONE, 0, KN, NULL }, { 1, N_("&Trace Point"), Command::TRACE_PT, C|S|'t', KN, mAna }, { 1, N_("&Stop Tracing..."), Command::STOP_TRACING, C|S|'s', KN, mAna },