From 887f119a8afe0ecf8a48770bf0dd2e74a62f26f5 Mon Sep 17 00:00:00 2001 From: Paddle Date: Wed, 20 Sep 2023 13:42:30 +0200 Subject: [PATCH] Group: Give a proper tooltip --- src/Gui/CommandStructure.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Gui/CommandStructure.cpp b/src/Gui/CommandStructure.cpp index 9e1bbc9099..674a455858 100644 --- a/src/Gui/CommandStructure.cpp +++ b/src/Gui/CommandStructure.cpp @@ -94,7 +94,10 @@ StdCmdGroup::StdCmdGroup() { sGroup = "Structure"; sMenuText = QT_TR_NOOP("Create group"); - sToolTipText = QT_TR_NOOP("Create a new group for ordering objects"); + sToolTipText = QT_TR_NOOP("

Group is a general purpose container that allows you to " + "group different types of objects in the Tree view, regardless of their data type. " + "It is used as a simple folder to categorize and organize the objects in your model, " + "in order to keep a logical structure. Std Groups may be nested inside other Std Groups.

"); sWhatsThis = "Std_Group"; sStatusTip = sToolTipText; sPixmap = "folder";