From c6ff8149f6a6730e482f169908a323a4de5d1f1c Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Mon, 28 Jan 2019 09:04:04 +0100 Subject: [PATCH] Remove colon according to design CURA-6141 --- resources/qml/ActionPanel/PrintJobInformation.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]))