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:
authorLipu Fei <lipu.fei815@gmail.com>2019-01-28 11:04:04 +0300
committerLipu Fei <lipu.fei815@gmail.com>2019-01-28 11:04:08 +0300
commitc6ff8149f6a6730e482f169908a323a4de5d1f1c (patch)
treed0e02f46b8f8b352cf16ce3011add590cc51bfc5 /resources/qml/ActionPanel
parent71b2787d0de0ab18054109fc284f3b8b53271f47 (diff)
Remove colon according to design
CURA-6141
Diffstat (limited to 'resources/qml/ActionPanel')
-rw-r--r--resources/qml/ActionPanel/PrintJobInformation.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/ActionPanel/PrintJobInformation.qml b/resources/qml/ActionPanel/PrintJobInformation.qml
index 45b3846f38..a8d3dad164 100644
--- a/resources/qml/ActionPanel/PrintJobInformation.qml
+++ b/resources/qml/ActionPanel/PrintJobInformation.qml
@@ -158,7 +158,7 @@ Column
for(var index = 0; index < lengths.length; index++)
{
var row = []
- row.push("%1: ".arg(names[index]))
+ row.push("%1".arg(names[index]))
row.push(catalog.i18nc("@label m for meter", "%1m").arg(lengths[index]))
row.push(catalog.i18nc("@label g for grams", "%1g").arg(weights[index]))
row.push("%1 %2".arg(UM.Preferences.getValue("cura/currency")).arg(costs[index]))