[Application] Tooltip for new pipeline is now set in whole component

Before it was set dynamically (with ToolTip.text...)
This commit is contained in:
Aurore LAFAURIE 2024-09-12 12:38:34 +02:00 committed by Fabien Castan
parent 064b29cb65
commit 8ab0432793

View file

@ -591,9 +591,14 @@ Page {
elide: Text.ElideLeft
elideWidth: newPipelineMenu.maxWidth
}
ToolTip.text: modelData["path"]
ToolTip.visible: hovered
ToolTip.delay: 200
ToolTip {
id: toolTip
delay: 200
text: modelData["path"]
visible: hovered
}
}
}
}