From a90014c6464c211f06dfda781be228c06132d87b Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 24 Feb 2017 16:24:24 +0100 Subject: [PATCH] add missing word, fix layout --- src/Mod/Sketcher/Gui/CommandConstraints.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Mod/Sketcher/Gui/CommandConstraints.cpp b/src/Mod/Sketcher/Gui/CommandConstraints.cpp index 7adaabb6f..16fc2229e 100644 --- a/src/Mod/Sketcher/Gui/CommandConstraints.cpp +++ b/src/Mod/Sketcher/Gui/CommandConstraints.cpp @@ -1861,13 +1861,13 @@ void CmdSketcherConstrainCoincident::activated(int iMsg) bool constraintMode = hGrp->GetBool("ContinuousConstraintMode", false); if (constraintMode) { - ActivateHandler(getActiveGuiDocument(), + ActivateHandler(getActiveGuiDocument(), new DrawSketchHandlerGenConstraint(constraintCursor, this)); - getSelection().clearSelection(); + getSelection().clearSelection(); } else { // TODO: Get the exact message from git history and put it here QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Wrong selection"), - QObject::tr("Select two or more from the sketch.")); + QObject::tr("Select two or more points from the sketch.")); } return; }