From abed3d8c7dfd0b18f8830db2b69c4979e284d593 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 23 Feb 2016 17:21:20 +0100 Subject: [PATCH] Make firmware update loading bar indeterminate There is no real progress to report, so it's actually indeterminate. Contributes to issue CURA-440. --- plugins/USBPrinting/FirmwareUpdateWindow.qml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/plugins/USBPrinting/FirmwareUpdateWindow.qml b/plugins/USBPrinting/FirmwareUpdateWindow.qml index 4ab1020a3a..bf196c097d 100644 --- a/plugins/USBPrinting/FirmwareUpdateWindow.qml +++ b/plugins/USBPrinting/FirmwareUpdateWindow.qml @@ -52,12 +52,13 @@ UM.Dialog wrapMode: Text.Wrap; } - ProgressBar + ProgressBar { - id: prog; + id: prog value: manager.progress - minimumValue: 0; - maximumValue: 100; + minimumValue: 0 + maximumValue: 100 + indeterminate: true anchors { left: parent.left; @@ -65,7 +66,7 @@ UM.Dialog } } - + SystemPalette { id: palette;