Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MonitorStage/MonitorMain.qml')
-rw-r--r--plugins/MonitorStage/MonitorMain.qml6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/MonitorStage/MonitorMain.qml b/plugins/MonitorStage/MonitorMain.qml
index 8992606d90..fdb67d0feb 100644
--- a/plugins/MonitorStage/MonitorMain.qml
+++ b/plugins/MonitorStage/MonitorMain.qml
@@ -132,7 +132,7 @@ Rectangle
width: UM.Theme.getSize("icon_indicator").width
height: UM.Theme.getSize("icon_indicator").height
}
- Label
+ UM.Label
{
id: manageQueueText
anchors
@@ -144,7 +144,6 @@ Rectangle
color: UM.Theme.getColor("text_link")
font: UM.Theme.getFont("medium")
text: catalog.i18nc("@label link to technical assistance", "View user manuals online")
- renderType: Text.NativeRendering
}
MouseArea
{
@@ -155,14 +154,13 @@ Rectangle
onExited: manageQueueText.font.underline = false
}
}
- Label
+ UM.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
}