From 696a48d3b4667b69867bd25d2f240db3b18775b9 Mon Sep 17 00:00:00 2001 From: Paddle Date: Wed, 20 Sep 2023 12:12:51 +0200 Subject: [PATCH] Give std_LinkMake a proper tooltip. --- src/Gui/CommandLink.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Gui/CommandLink.cpp b/src/Gui/CommandLink.cpp index da5df19bf1..ad249eb07d 100644 --- a/src/Gui/CommandLink.cpp +++ b/src/Gui/CommandLink.cpp @@ -206,7 +206,11 @@ StdCmdLinkMake::StdCmdLinkMake() { sGroup = "Link"; sMenuText = QT_TR_NOOP("Make link"); - sToolTipText = QT_TR_NOOP("Create a link to the selected object(s)"); + sToolTipText = QT_TR_NOOP("

An App::Link is a type of object that references or links" + " to another object, in the same document, or in another document. Unlike Clones, Link" + " references directly the original Shape, so it is more memory efficient which helps " + "with the creation of complex assemblies from smaller subassemblies, and from multiple" + " reusable components like screws, nuts, and similar fasteners.

"); sWhatsThis = "Std_LinkMake"; sStatusTip = sToolTipText; eType = AlterDoc;