From 13cdc1cd3966185c27c139e23e897dcb9d7e13de Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 17 Mar 2014 09:41:51 +0100 Subject: [PATCH] + issue #0001475: Implement a 3 point arc similar to solidworks in sketcher --- src/Mod/Sketcher/Gui/CommandCreateGeo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Sketcher/Gui/CommandCreateGeo.cpp b/src/Mod/Sketcher/Gui/CommandCreateGeo.cpp index c40399aa2a..e349b1a1d9 100644 --- a/src/Mod/Sketcher/Gui/CommandCreateGeo.cpp +++ b/src/Mod/Sketcher/Gui/CommandCreateGeo.cpp @@ -1593,7 +1593,7 @@ void CmdSketcherCompCreateArc::languageChange() arc1->setToolTip(QApplication::translate("Sketcher_CreateArc","Create an arc by its center and by its end points")); arc1->setStatusTip(QApplication::translate("Sketcher_CreateArc","Create an arc by its center and by its end points")); QAction* arc2 = a[1]; - arc2->setText(QApplication::translate("CmdSketcherCompCreateArc","End point and rim point")); + arc2->setText(QApplication::translate("CmdSketcherCompCreateArc","End points and rim point")); arc2->setToolTip(QApplication::translate("Sketcher_Create3PointArc","Create an arc by its end points and a point along the arc")); arc2->setStatusTip(QApplication::translate("Sketcher_Create3PointArc","Create an arc by its end points and a point along the arc")); }