Change progress property of ProgressIndicator from in-out to out

This commit is contained in:
Florian Blasius 2023-06-01 12:19:43 +02:00
parent b634b1fa7f
commit 0755af3b6d
3 changed files with 3 additions and 3 deletions

View file

@ -485,7 +485,7 @@ export component NativeProgressIndicator {
in property <length> width;
in property <length> height;
in property <bool> indeterminate;
in-out property <float> progress;
in property <float> progress;
in property <float> minimum;
in property <float> maximum: 100;
//-is_internal

View file

@ -222,7 +222,7 @@ export component ProgressIndicator {
in property<float> maximum: 100;
in property<float> minimum: 0;
in-out property <float> progress;
in property <float> progress;
in property <bool> indeterminate;
min-height: 2px;

View file

@ -8,7 +8,7 @@ export component ProgressIndicator {
in property<float> maximum: 100;
in property<float> minimum: 0;
in-out property<float> progress;
in property<float> progress;
in property <bool> indeterminate;
min-height: 4px;