Merge branch 'master' into dev
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "lvgl",
|
"name": "lvgl",
|
||||||
"version": "7.7.1",
|
"version": "7.7.2",
|
||||||
"keywords": "graphics, gui, embedded, tft, lvgl",
|
"keywords": "graphics, gui, embedded, tft, lvgl",
|
||||||
"description": "Graphics library to create embedded GUI with easy-to-use graphical elements, beautiful visual effects and low memory footprint. It offers anti-aliasing, opacity, and animations using only one frame buffer.",
|
"description": "Graphics library to create embedded GUI with easy-to-use graphical elements, beautiful visual effects and low memory footprint. It offers anti-aliasing, opacity, and animations using only one frame buffer.",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -785,7 +785,8 @@ static lv_res_t lv_arc_signal(lv_obj_t * arc, lv_signal_t sign, void * param)
|
|||||||
if(LV_MATH_ABS(delta_angle) > 180) {
|
if(LV_MATH_ABS(delta_angle) > 180) {
|
||||||
if(ext->min_close) angle = 0;
|
if(ext->min_close) angle = 0;
|
||||||
else angle = deg_range;
|
else angle = deg_range;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
if(angle < deg_range / 2) ext->min_close = 1;
|
if(angle < deg_range / 2) ext->min_close = 1;
|
||||||
else ext->min_close = 0;
|
else ext->min_close = 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user