mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 23:17:32 -06:00
Make firmware update loading bar indeterminate
There is no real progress to report, so it's actually indeterminate. Contributes to issue CURA-440.
This commit is contained in:
parent
c41b9fb09a
commit
abed3d8c7d
1 changed files with 6 additions and 5 deletions
|
@ -52,12 +52,13 @@ UM.Dialog
|
||||||
wrapMode: Text.Wrap;
|
wrapMode: Text.Wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
ProgressBar
|
ProgressBar
|
||||||
{
|
{
|
||||||
id: prog;
|
id: prog
|
||||||
value: manager.progress
|
value: manager.progress
|
||||||
minimumValue: 0;
|
minimumValue: 0
|
||||||
maximumValue: 100;
|
maximumValue: 100
|
||||||
|
indeterminate: true
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
left: parent.left;
|
left: parent.left;
|
||||||
|
@ -65,7 +66,7 @@ UM.Dialog
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SystemPalette
|
SystemPalette
|
||||||
{
|
{
|
||||||
id: palette;
|
id: palette;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue