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/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml')
-rw-r--r--plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml
index ad0e8a6777..f22ac53298 100644
--- a/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml
+++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml
@@ -3,7 +3,7 @@
import QtQuick 2.2
import QtQuick.Controls 2.0
-import UM 1.3 as UM
+import UM 1.5 as UM
/**
* This component is a sort of "super icon" which includes a colored SVG image
@@ -35,18 +35,16 @@ Item
width: size
}
- Label
+ UM.Label
{
id: positionLabel
anchors.centerIn: icon
font: UM.Theme.getFont("small")
- color: UM.Theme.getColor("text")
height: Math.round(size / 2)
horizontalAlignment: Text.AlignHCenter
text: position + 1
- verticalAlignment: Text.AlignVCenter
+
width: Math.round(size / 2)
visible: position >= 0
- renderType: Text.NativeRendering
}
}