UI: Remove shortcut key collisions in the Sketch menu
"&Workplane" -> "Wor&kplane" "&Image" -> "I&mage" "Tangent &Arc at Point" -> "Ta&ngent Arc at Point" Closes #1019pull/1381/head
parent
3d04d4cc04
commit
f0912d42b1
|
@ -126,7 +126,7 @@ const MenuEntry Menu[] = {
|
|||
{ 1, N_("Anywhere In &3d"), Command::FREE_IN_3D, '3', KR, mReq },
|
||||
{ 1, NULL, Command::NONE, 0, KN, NULL },
|
||||
{ 1, N_("Datum &Point"), Command::DATUM_POINT, 'p', KN, mReq },
|
||||
{ 1, N_("&Workplane"), Command::WORKPLANE, 0, KN, mReq },
|
||||
{ 1, N_("Wor&kplane"), Command::WORKPLANE, 0, KN, mReq },
|
||||
{ 1, NULL, Command::NONE, 0, KN, NULL },
|
||||
{ 1, N_("Line &Segment"), Command::LINE_SEGMENT, 's', KN, mReq },
|
||||
{ 1, N_("C&onstruction Line Segment"), Command::CONSTR_SEGMENT, S|'s', KN, mReq },
|
||||
|
@ -136,10 +136,10 @@ const MenuEntry Menu[] = {
|
|||
{ 1, N_("&Bezier Cubic Spline"), Command::CUBIC, 'b', KN, mReq },
|
||||
{ 1, NULL, Command::NONE, 0, KN, NULL },
|
||||
{ 1, N_("&Text in TrueType Font"), Command::TTF_TEXT, 't', KN, mReq },
|
||||
{ 1, N_("&Image"), Command::IMAGE, 0, KN, mReq },
|
||||
{ 1, N_("I&mage"), Command::IMAGE, 0, KN, mReq },
|
||||
{ 1, NULL, Command::NONE, 0, KN, NULL },
|
||||
{ 1, N_("To&ggle Construction"), Command::CONSTRUCTION, 'g', KN, mReq },
|
||||
{ 1, N_("Tangent &Arc at Point"), Command::TANGENT_ARC, S|'a', KN, mReq },
|
||||
{ 1, N_("Ta&ngent Arc at Point"), Command::TANGENT_ARC, S|'a', KN, mReq },
|
||||
{ 1, N_("Split Curves at &Intersection"), Command::SPLIT_CURVES, 'i', KN, mReq },
|
||||
|
||||
{ 0, N_("&Constrain"), Command::NONE, 0, KN, mCon },
|
||||
|
|
Loading…
Reference in New Issue