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:
authorJaime van Kessel <nallath@gmail.com>2020-10-08 19:00:53 +0300
committerJaime van Kessel <nallath@gmail.com>2020-10-08 19:00:53 +0300
commit77290451e12d2969d6c731c31311c166f4e0baec (patch)
treea88979ef34ac8d87f110d2f41a59b46babc8632d /plugins/UM3NetworkPrinting
parentec5796400ba97d8a0a750f2f66be0f8febc4b82b (diff)
Remove a bunch of unneeded properties from the labels
CURA-7745
Diffstat (limited to 'plugins/UM3NetworkPrinting')
-rw-r--r--plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml
index 23add1c41f..9f159102e2 100644
--- a/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml
+++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml
@@ -98,13 +98,9 @@ Item
{
text: catalog.i18nc("@label", "There are no print jobs in the queue. Slice and send a job to add one.")
color: UM.Theme.getColor("text")
- elide: Text.ElideRight
font: UM.Theme.getFont("medium")
anchors.verticalCenter: parent.verticalCenter
- // FIXED-LINE-HEIGHT:
- height: 18 * screenScaleFactor // TODO: Theme!
- verticalAlignment: Text.AlignVCenter
renderType: Text.NativeRendering
visible: printJobList.count === 0
}
@@ -113,14 +109,10 @@ Item
{
text: catalog.i18nc("@label", "Print jobs")
color: UM.Theme.getColor("text")
- elide: Text.ElideRight
font: UM.Theme.getFont("medium") // 14pt, regular
anchors.verticalCenter: parent.verticalCenter
width: 284 * screenScaleFactor // TODO: Theme! (Should match column size)
- // FIXED-LINE-HEIGHT:
- height: 18 * screenScaleFactor // TODO: Theme!
- verticalAlignment: Text.AlignVCenter
renderType: Text.NativeRendering
visible: printJobList.count > 0
}
@@ -129,14 +121,10 @@ Item
{
text: catalog.i18nc("@label", "Total print time")
color: UM.Theme.getColor("text")
- elide: Text.ElideRight
font: UM.Theme.getFont("medium") // 14pt, regular
anchors.verticalCenter: parent.verticalCenter
width: UM.Theme.getSize("monitor_column").width
- // FIXED-LINE-HEIGHT:
- height: 18 * screenScaleFactor // TODO: Theme!
- verticalAlignment: Text.AlignVCenter
renderType: Text.NativeRendering
visible: printJobList.count > 0
}
@@ -145,14 +133,10 @@ Item
{
text: catalog.i18nc("@label", "Waiting for")
color: UM.Theme.getColor("text")
- elide: Text.ElideRight
font: UM.Theme.getFont("medium") // 14pt, regular
anchors.verticalCenter: parent.verticalCenter
width: UM.Theme.getSize("monitor_column").width
- // FIXED-LINE-HEIGHT:
- height: 18 * screenScaleFactor // TODO: Theme!
- verticalAlignment: Text.AlignVCenter
renderType: Text.NativeRendering
visible: printJobList.count > 0
}