From b9bc14ea093c0594b3eed824fbc4befd6c6584a3 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 23 Feb 2016 17:27:10 +0100 Subject: [PATCH] Make progress bar determinate when at 100% This gives the user a better indication that the firmware update is done. The progress bar is still sorta disfunctional, but hey even disabled people are people. Contributes to issue CURA-440. --- plugins/USBPrinting/FirmwareUpdateWindow.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/USBPrinting/FirmwareUpdateWindow.qml b/plugins/USBPrinting/FirmwareUpdateWindow.qml index bf196c097d..e8f532d24a 100644 --- a/plugins/USBPrinting/FirmwareUpdateWindow.qml +++ b/plugins/USBPrinting/FirmwareUpdateWindow.qml @@ -58,7 +58,7 @@ UM.Dialog value: manager.progress minimumValue: 0 maximumValue: 100 - indeterminate: true + indeterminate: manager.progress < 100 anchors { left: parent.left;