diff --git a/src/Mod/ReverseEngineering/Gui/Command.cpp b/src/Mod/ReverseEngineering/Gui/Command.cpp index 0e92fe819f..aa46f9f888 100644 --- a/src/Mod/ReverseEngineering/Gui/Command.cpp +++ b/src/Mod/ReverseEngineering/Gui/Command.cpp @@ -104,7 +104,7 @@ CmdApproxPlane::CmdApproxPlane() { sAppModule = "Reen"; sGroup = QT_TR_NOOP("Reverse Engineering"); - sMenuText = QT_TR_NOOP("Plane..."); + sMenuText = QT_TR_NOOP("Plane"); sToolTipText = QT_TR_NOOP("Approximate a plane"); sWhatsThis = "Reen_ApproxPlane"; sStatusTip = sToolTipText; @@ -199,7 +199,7 @@ void CmdApproxPlane::activated(int) bool CmdApproxPlane::isActive() { - if (getSelection().countObjectsOfType(App::GeoFeature::getClassTypeId()) == 1) { + if (getSelection().countObjectsOfType(App::GeoFeature::getClassTypeId()) > 0) { return true; } return false;