mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
Fix type error for hovering manage queue link
Contributes to CL-1148
This commit is contained in:
parent
2f84339f5c
commit
ba7863c9d9
1 changed files with 9 additions and 2 deletions
|
@ -91,6 +91,7 @@ Component
|
||||||
}
|
}
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
|
id: manageQueueText
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
left: externalLinkIcon.right
|
left: externalLinkIcon.right
|
||||||
|
@ -110,8 +111,14 @@ Component
|
||||||
anchors.fill: manageQueueLabel
|
anchors.fill: manageQueueLabel
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
onClicked: Cura.MachineManager.printerOutputDevices[0].openPrintJobControlPanel()
|
onClicked: Cura.MachineManager.printerOutputDevices[0].openPrintJobControlPanel()
|
||||||
onEntered: manageQueueLabel.font.underline = true
|
onEntered:
|
||||||
onExited: manageQueueLabel.font.underline = false
|
{
|
||||||
|
manageQueueText.font.underline = true
|
||||||
|
}
|
||||||
|
onExited:
|
||||||
|
{
|
||||||
|
manageQueueText.font.underline = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Row
|
Row
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue