TechDraw: fix-wrong sWhatsThis for align-commands

sWhatsThis should match the command name.
This commit is contained in:
Roy-043
2026-01-09 20:47:10 +01:00
committed by Max Wilfinger
parent c1b40e3dfc
commit fe86abea92

View File

@@ -121,7 +121,7 @@ CmdTechDrawAlignVertexesVertically::CmdTechDrawAlignVertexesVertically()
sGroup = QT_TR_NOOP("TechDraw");
sMenuText = QT_TR_NOOP("Align Vertices/Edge Vertically");
sToolTipText = QT_TR_NOOP("Aligns the selected vertices or edges vertically to the view rotation");
sWhatsThis = "TechDraw_AlignGroup";
sWhatsThis = "TechDraw_AlignVertexesVertically";
sStatusTip = sToolTipText;
}
@@ -154,7 +154,7 @@ CmdTechDrawAlignVertexesHorizontally::CmdTechDrawAlignVertexesHorizontally()
sGroup = QT_TR_NOOP("TechDraw");
sMenuText = QT_TR_NOOP("Align Vertices/Edge Horizontally");
sToolTipText = QT_TR_NOOP("Aligns the selected vertices or edges horizontally to the view rotation");
sWhatsThis = "TechDraw_AlignGroup";
sWhatsThis = "TechDraw_AlignVertexesHorizontally";
sStatusTip = sToolTipText;
}