QbsProjectManager: Shorten display name of QbsKitAspect

Otherwise, valuable screen estate is taken away from all aspect values.

Task-number: QTCREATORBUG-31685
Change-Id: I3fe1802604e08bbc86d36a9b18ca44b8e7486beb
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Christian Kandeler
2024-10-07 15:37:21 +02:00
parent ea60709dd9
commit e3474184f6

View File

@@ -89,7 +89,10 @@ public:
QbsKitAspectFactory() QbsKitAspectFactory()
{ {
setId(QbsKitAspect::id()); setId(QbsKitAspect::id());
setDisplayName(Tr::tr("Additional Qbs Profile Settings")); setDisplayName(Tr::tr("Qbs Profile Additions"));
setDescription(Tr::tr("Additional module properties to set in "
"the Qbs profile corresponding to this kit.\n"
"You will rarely need to do this."));
setPriority(22000); setPriority(22000);
} }