Release v7.7.2

This commit is contained in:
Gabor Kiss-Vamosi
2020-11-17 11:29:58 +01:00
parent 3979024660
commit 52f52397cb
6 changed files with 37 additions and 36 deletions

View File

@@ -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": {

2
lvgl.h
View File

@@ -17,7 +17,7 @@ extern "C" {
#define LVGL_VERSION_MAJOR 7 #define LVGL_VERSION_MAJOR 7
#define LVGL_VERSION_MINOR 7 #define LVGL_VERSION_MINOR 7
#define LVGL_VERSION_PATCH 2 #define LVGL_VERSION_PATCH 2
#define LVGL_VERSION_INFO "dev" #define LVGL_VERSION_INFO ""
/********************* /*********************
* INCLUDES * INCLUDES

View File

@@ -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;
} }