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:
authorGhostkeeper <rubend@tutanota.com>2018-12-31 17:44:09 +0300
committerGhostkeeper <rubend@tutanota.com>2018-12-31 17:44:09 +0300
commit6092402a878c6ba4bab877b31dbf1033dc9c8a8e (patch)
tree5b0e73c9117638ec858eaac7bd69531c3caa3678 /resources/qml/ActionPanel/SliceProcessWidget.qml
parent4177faa6eac5b65d796fe27f3e16a0c82ec1cf34 (diff)
Fix 'Slicing...' message when not autoslicing
Also changes the 'auto slicing' text to just 'slicing', because that's more what the user expects. Discussed with UX. Contributes to issue CURA-6025.
Diffstat (limited to 'resources/qml/ActionPanel/SliceProcessWidget.qml')
-rw-r--r--resources/qml/ActionPanel/SliceProcessWidget.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/ActionPanel/SliceProcessWidget.qml b/resources/qml/ActionPanel/SliceProcessWidget.qml
index 6c3b136ca0..51c5e4cac7 100644
--- a/resources/qml/ActionPanel/SliceProcessWidget.qml
+++ b/resources/qml/ActionPanel/SliceProcessWidget.qml
@@ -44,9 +44,9 @@ Column
{
id: autoSlicingLabel
width: parent.width
- visible: prepareButtons.autoSlice && (widget.backendState == UM.Backend.Processing || widget.backendState == UM.Backend.NotStarted)
+ visible: progressBar.visible
- text: catalog.i18nc("@label:PrintjobStatus", "Auto slicing...")
+ text: catalog.i18nc("@label:PrintjobStatus", "Slicing...")
color: UM.Theme.getColor("text")
font: UM.Theme.getFont("default")
renderType: Text.NativeRendering