From ab4c8699aef234e7bcc68f7639fb3283395a5280 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 26 Jun 2023 16:52:41 +0200 Subject: [PATCH] doc: Fix example of ProgressIndicator Use 50% instead of 50 for the property that has a value between 0 and 1... --- docs/language/src/builtins/widgets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/language/src/builtins/widgets.md b/docs/language/src/builtins/widgets.md index 95a0431fb..1ac50a103 100644 --- a/docs/language/src/builtins/widgets.md +++ b/docs/language/src/builtins/widgets.md @@ -266,7 +266,7 @@ export component Example inherits Window { ProgressIndicator { width: parent.width; height: parent.height; - progress: 50; + progress: 50%; } } ```