From 6487fb890e168ee6cb92a49f7e610c3bfbb23212 Mon Sep 17 00:00:00 2001 From: ruevs Date: Wed, 11 Jan 2023 22:27:07 +0200 Subject: [PATCH] UI: Adjust the menu items "Angle" and "Equal..." to match current state. --- src/graphicswin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphicswin.cpp b/src/graphicswin.cpp index 4236acf1..3d7a69b7 100644 --- a/src/graphicswin.cpp +++ b/src/graphicswin.cpp @@ -145,7 +145,7 @@ const MenuEntry Menu[] = { { 0, N_("&Constrain"), Command::NONE, 0, KN, mCon }, { 1, N_("&Distance / Diameter"), Command::DISTANCE_DIA, 'd', KN, mCon }, { 1, N_("Re&ference Dimension"), Command::REF_DISTANCE, S|'d', KN, mCon }, -{ 1, N_("A&ngle"), Command::ANGLE, 'n', KN, mCon }, +{ 1, N_("A&ngle / Equal Angle"), Command::ANGLE, 'n', KN, mCon }, { 1, N_("Reference An&gle"), Command::REF_ANGLE, S|'n', KN, mCon }, { 1, N_("Other S&upplementary Angle"), Command::OTHER_ANGLE, 'u', KN, mCon }, { 1, N_("Toggle R&eference Dim"), Command::REFERENCE, 'e', KN, mCon }, @@ -154,7 +154,7 @@ const MenuEntry Menu[] = { { 1, N_("&Vertical"), Command::VERTICAL, 'v', KN, mCon }, { 1, NULL, Command::NONE, 0, KN, NULL }, { 1, N_("&On Point / Curve / Plane"), Command::ON_ENTITY, 'o', KN, mCon }, -{ 1, N_("E&qual Length / Radius / Angle"), Command::EQUAL, 'q', KN, mCon }, +{ 1, N_("E&qual Length / Radius"), Command::EQUAL, 'q', KN, mCon }, { 1, N_("Length / Arc Ra&tio"), Command::RATIO, 'z', KN, mCon }, { 1, N_("Length / Arc Diff&erence"), Command::DIFFERENCE, 'j', KN, mCon }, { 1, N_("At &Midpoint"), Command::AT_MIDPOINT, 'm', KN, mCon },