mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Add notification to connect the printer even if the printer is not network-connected
There could be other methods of connecting than the network connectivity of the UM3NetworkPrinting plug-in. For instance, perhaps other network connection plug-ins can provide information in this monitor stage. Or the user might want to use a USB cable. I'm explicitly quite vague about how it should be connected because this label should work for all types of connections except UM3NetworkPrinting. Fixes #9444.
This commit is contained in:
parent
f4f1dce941
commit
4fc91d4f6d
1 changed files with 11 additions and 0 deletions
|
@ -164,5 +164,16 @@ Rectangle
|
||||||
onExited: manageQueueText.font.underline = false
|
onExited: manageQueueText.font.underline = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
id: noConnectionLabel
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
visible: !isNetworkConfigurable
|
||||||
|
text: catalog.i18nc("@info", "In order to monitor your print from Cura, please connect the printer.")
|
||||||
|
font: UM.Theme.getFont("medium")
|
||||||
|
color: UM.Theme.getColor("text")
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
width: contentWidth
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue