diff --git a/plugins/MonitorStage/MonitorMain.qml b/plugins/MonitorStage/MonitorMain.qml index 56f916dc25..d5fdb66c89 100644 --- a/plugins/MonitorStage/MonitorMain.qml +++ b/plugins/MonitorStage/MonitorMain.qml @@ -164,5 +164,16 @@ Rectangle 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 + } } }