mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[AttributeItemDelegate] Type of attribute in tooltip doesn't need to be bold
This commit is contained in:
parent
8ab0432793
commit
fbfe83e371
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ RowLayout {
|
|||
var tooltip = ""
|
||||
if (!attribute.validValue && attribute.desc.errorMessage !== "")
|
||||
tooltip += "<i><b>Error: </b>" + Format.plainToHtml(attribute.desc.errorMessage) + "</i><br><br>"
|
||||
tooltip += "<b> " + attribute.desc.name + ": " + attribute.type + "</b><br>" + Format.plainToHtml(attribute.desc.description)
|
||||
tooltip += "<b> " + attribute.desc.name + ":</b> " + attribute.type + "<br>" + Format.plainToHtml(attribute.desc.description)
|
||||
|
||||
parameterTooltip.text = tooltip
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ RowLayout {
|
|||
var tooltip = ""
|
||||
if (!object.validValue && object.desc.errorMessage !== "")
|
||||
tooltip += "<i><b>Error: </b>" + Format.plainToHtml(object.desc.errorMessage) + "</i><br><br>"
|
||||
tooltip += "<b>" + object.desc.name + ": " + attribute.type + "</b><br>" + Format.plainToHtml(object.description)
|
||||
tooltip += "<b>" + object.desc.name + ":</b> " + attribute.type + "<br>" + Format.plainToHtml(object.description)
|
||||
return tooltip
|
||||
}
|
||||
visible: parameterMA.containsMouse
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue