From eeee48b1c943fc288521e4479d874348f4690842 Mon Sep 17 00:00:00 2001 From: embeddedt <42941056+embeddedt@users.noreply.github.com> Date: Mon, 29 Nov 2021 10:59:44 -0500 Subject: [PATCH] docs(bar) fix default range Related: https://github.com/lvgl/lvgl/pull/2845#issuecomment-981288322 --- docs/widgets/core/bar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/widgets/core/bar.md b/docs/widgets/core/bar.md index ba1ca3ffc..4748e55a2 100644 --- a/docs/widgets/core/bar.md +++ b/docs/widgets/core/bar.md @@ -22,7 +22,7 @@ Not only the end, but also the start value of the bar can be set, which changes ### Value and range A new value can be set by `lv_bar_set_value(bar, new_value, LV_ANIM_ON/OFF)`. The value is interpreted in a range (minimum and maximum values) which can be modified with `lv_bar_set_range(bar, min, max)`. -The default range is 1..100. +The default range is 0..100. The new value in `lv_bar_set_value` can be set with or without an animation depending on the last parameter (`LV_ANIM_ON/OFF`).