mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 01:15:55 +08:00
Fix type error for hovering manage queue link
Contributes to CL-1148
This commit is contained in:
parent
2f84339f5c
commit
ba7863c9d9
@ -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…
x
Reference in New Issue
Block a user