From d980952d31611d523f94fe1be9be6c696a457004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Tr=C3=B6ger?= Date: Tue, 14 Jul 2015 05:45:00 +0200 Subject: [PATCH] fix body and part tool texts --- src/Mod/PartDesign/Gui/Command.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Mod/PartDesign/Gui/Command.cpp b/src/Mod/PartDesign/Gui/Command.cpp index 6ce89ac5a..e874db3b4 100644 --- a/src/Mod/PartDesign/Gui/Command.cpp +++ b/src/Mod/PartDesign/Gui/Command.cpp @@ -94,7 +94,7 @@ CmdPartDesignPart::CmdPartDesignPart() sAppModule = "PartDesign"; sGroup = QT_TR_NOOP("PartDesign"); sMenuText = QT_TR_NOOP("Create part"); - sToolTipText = QT_TR_NOOP("Create a new part feature"); + sToolTipText = QT_TR_NOOP("Create a new part and make it active"); sWhatsThis = sToolTipText; sStatusTip = sToolTipText; sPixmap = "Tree_Annotation"; @@ -102,7 +102,7 @@ CmdPartDesignPart::CmdPartDesignPart() void CmdPartDesignPart::activated(int iMsg) { - openCommand("Add a body feature"); + openCommand("Add a part"); std::string FeatName = getUniqueObjectName("Part"); std::string PartName; @@ -131,7 +131,7 @@ CmdPartDesignBody::CmdPartDesignBody() sAppModule = "PartDesign"; sGroup = QT_TR_NOOP("PartDesign"); sMenuText = QT_TR_NOOP("Create body"); - sToolTipText = QT_TR_NOOP("Create a new body feature"); + sToolTipText = QT_TR_NOOP("Create a new body and make it active"); sWhatsThis = sToolTipText; sStatusTip = sToolTipText; sPixmap = "PartDesign_Body_Create_New"; @@ -139,7 +139,7 @@ CmdPartDesignBody::CmdPartDesignBody() void CmdPartDesignBody::activated(int iMsg) { - openCommand("Add a body feature"); + openCommand("Add a body"); std::string FeatName = getUniqueObjectName("Body"); // first check if Part is already created: