doc: Fix example of ProgressIndicator

Use 50% instead of 50 for the property that has a value between 0 and 1...
This commit is contained in:
Simon Hausmann 2023-06-26 16:52:41 +02:00
parent 67b9f2b137
commit ab4c8699ae

View file

@ -266,7 +266,7 @@ export component Example inherits Window {
ProgressIndicator { ProgressIndicator {
width: parent.width; width: parent.width;
height: parent.height; height: parent.height;
progress: 50; progress: 50%;
} }
} }
``` ```