Add tooltips for intent profiles to the Recommended Quality panel.

The description is optional.
Tooltip will not show if no description is set

CURA-6853
This commit is contained in:
Nino van Hooff 2019-10-17 15:54:03 +02:00
parent ad2077b76b
commit 3709cfa4ed
3 changed files with 51 additions and 12 deletions

View file

@ -1586,8 +1586,9 @@ class MachineManager(QObject):
intent_category = self.activeIntentCategory
if intent_category != "default":
intent_display_name = IntentCategoryModel.name_translation.get(intent_category,
catalog.i18nc("@label", "Unknown"))
intent_display_name = IntentCategoryModel.translation(intent_category,
"name",
catalog.i18nc("@label", "Unknown"))
display_name = "{intent_name} - {the_rest}".format(intent_name = intent_display_name,
the_rest = display_name)