mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
Fix highlighting of item under tooltip area
The parent was no longer the original parent.
This commit is contained in:
parent
371885d826
commit
1cd5757029
1 changed files with 2 additions and 2 deletions
|
@ -143,8 +143,8 @@ ComboBox
|
||||||
{
|
{
|
||||||
Rectangle
|
Rectangle
|
||||||
{
|
{
|
||||||
color: parent.highlighted ? UM.Theme.getColor("setting_control_highlight") : "transparent"
|
color: delegateItem.highlighted ? UM.Theme.getColor("setting_control_highlight") : "transparent"
|
||||||
border.color: parent.highlighted ? UM.Theme.getColor("setting_control_border_highlight") : "transparent"
|
border.color: delegateItem.highlighted ? UM.Theme.getColor("setting_control_border_highlight") : "transparent"
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
}
|
}
|
||||||
text: delegateLabel.truncated ? delegateItem.text : ""
|
text: delegateLabel.truncated ? delegateItem.text : ""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue