From af7d7f6b40860206e06cb83da793a6578e7c8f01 Mon Sep 17 00:00:00 2001
From: Roy-043 <70520633+Roy-043@users.noreply.github.com>
Date: Mon, 24 Jan 2022 12:29:23 +0100
Subject: [PATCH] Update CommandExtensionDims.cpp
Modifications as suggested by Edi.
---
src/Mod/TechDraw/Gui/CommandExtensionDims.cpp | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/Mod/TechDraw/Gui/CommandExtensionDims.cpp b/src/Mod/TechDraw/Gui/CommandExtensionDims.cpp
index c9fbf95121..ee7fc3ceb1 100644
--- a/src/Mod/TechDraw/Gui/CommandExtensionDims.cpp
+++ b/src/Mod/TechDraw/Gui/CommandExtensionDims.cpp
@@ -1507,6 +1507,7 @@ CmdTechDrawExtensionCreateHorizCoordDimension::CmdTechDrawExtensionCreateHorizCo
sToolTipText = QT_TR_NOOP("Create multiple evenly spaced horizontal dimensions starting from the same baseline:
\
- Specify the cascade spacing (optional)
\
- Select three or more vertexes
\
+- The selection order of the first two vertexes determines the position of the baseline
\
- Click this tool");
sWhatsThis = "TechDraw_ExtensionCreateHorizCoordDimension";
sStatusTip = sMenuText;
@@ -1579,6 +1580,7 @@ CmdTechDrawExtensionCreateVertCoordDimension::CmdTechDrawExtensionCreateVertCoor
sToolTipText = QT_TR_NOOP("Create multiple evenly spaced vertical dimensions starting from the same baseline:
\
- Specify the cascade spacing (optional)
\
- Select three or more vertexes
\
+- The selection order of the first two vertexes determines the position of the baseline
\
- Click this tool");
sWhatsThis = "TechDraw_ExtensionCreateVertCoordDimension";
sStatusTip = sMenuText;
@@ -1676,7 +1678,8 @@ CmdTechDrawExtensionCreateObliqueCoordDimension::CmdTechDrawExtensionCreateObliq
sToolTipText = QT_TR_NOOP("Create multiple evenly spaced oblique dimensions starting from the same baseline:
\
- Specify the cascade spacing (optional)
\
- Select three or more vertexes
\
-- The first two vertexes define the direction
\
+- The selection order of the first two vertexes determines the position of the baseline
\
+- The first two vertexes also define the direction
\
- Click this tool");
sWhatsThis = "TechDraw_ExtensionCreateObliqueCoordDimension";
sStatusTip = sMenuText;
@@ -1711,6 +1714,7 @@ CmdTechDrawExtensionCreateCoordDimensionGroup::CmdTechDrawExtensionCreateCoordDi
sToolTipText = QT_TR_NOOP("Create multiple evenly spaced horizontal dimensions starting from the same baseline:
\
- Specify the cascade spacing (optional)
\
- Select three or more vertexes
\
+- The selection order of the first two vertexes determines the position of the baseline
\
- Click this tool");
sWhatsThis = "TechDraw_ExtensionCreateCoordDimensionGroup";
sStatusTip = sMenuText;
@@ -1787,6 +1791,7 @@ void CmdTechDrawExtensionCreateCoordDimensionGroup::languageChange()
"Create multiple evenly spaced horizontal dimensions starting from the same baseline:
\
- Specify the cascade spacing (optional)
\
- Select three or more vertexes
\
+- The selection order of the first two vertexes determines the position of the baseline
\
- Click this tool"));
arc1->setStatusTip(arc1->text());
QAction* arc2 = a[1];
@@ -1795,6 +1800,7 @@ void CmdTechDrawExtensionCreateCoordDimensionGroup::languageChange()
"Create multiple evenly spaced vertical dimensions starting from the same baseline:
\
- Specify the cascade spacing (optional)
\
- Select three or more vertexes
\
+- The selection order of the first two vertexes determines the position of the baseline
\
- Click this tool"));
arc2->setStatusTip(arc2->text());
QAction* arc3 = a[2];
@@ -1803,7 +1809,8 @@ void CmdTechDrawExtensionCreateCoordDimensionGroup::languageChange()
"Create multiple evenly spaced oblique dimensions starting from the same baseline:
\
- Specify the cascade spacing (optional)
\
- Select three or more vertexes
\
-- The first two vertexes define the direction
\
+- The selection order of the first two vertexes determines the position of the baseline
\
+- The first two vertexes also define the direction
\
- Click this tool"));
arc3->setStatusTip(arc3->text());
}