diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 534908ef6..3742e9bfc 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## v8.1.0 (In progress) +- fix(docs) API colorwheel reference from 'lv_colorwheel_colour_set_mode...' to 'lv_colorwheel_set_mode...' - Fixed lv_deinit declaration when LV_USE_GPU_SDL is enabled - added sample lv_example_list_2.py - lv_obj_move_up(obj) and lv_obj_move_down(obj) added. (#2461) diff --git a/docs/widgets/extra/colorwheel.md b/docs/widgets/extra/colorwheel.md index c0d8c025d..e0132b777 100644 --- a/docs/widgets/extra/colorwheel.md +++ b/docs/widgets/extra/colorwheel.md @@ -25,9 +25,9 @@ The color can be set manually with `lv_colorwheel_set_hue/saturation/value(color ### Color mode -The current color mode can be manually selected with `lv_colorwheel_set_color_mode(colorwheel, LV_COLORWHEEL_MODE_HUE/SATURATION/VALUE)`. +The current color mode can be manually selected with `lv_colorwheel_set_mode(colorwheel, LV_COLORWHEEL_MODE_HUE/SATURATION/VALUE)`. -The color mode can be fixed (so as to not change with long press) using `lv_colorwheel_set_color_mode_fixed(colorwheel, true)` +The color mode can be fixed (so as to not change with long press) using `lv_colorwheel_set_mode_fixed(colorwheel, true)` ## Events - `LV_EVENT_VALUE_CHANGED` Sent if a new color is selected.