From fe86abea92afd3ce0e0dd568c545c351b6204b7e Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Fri, 9 Jan 2026 20:47:10 +0100 Subject: [PATCH] TechDraw: fix-wrong sWhatsThis for align-commands sWhatsThis should match the command name. --- src/Mod/TechDraw/Gui/CommandAlign.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/TechDraw/Gui/CommandAlign.cpp b/src/Mod/TechDraw/Gui/CommandAlign.cpp index b2827fa9b1..b29bd2b6ef 100644 --- a/src/Mod/TechDraw/Gui/CommandAlign.cpp +++ b/src/Mod/TechDraw/Gui/CommandAlign.cpp @@ -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; }