ddlist and roller group updates + updates with USE_LV_ANIMATION = 0

This commit is contained in:
Gabor Kiss-Vamosi
2018-03-01 12:21:49 +01:00
parent d20fe1f4ee
commit c3e248ec79
14 changed files with 122 additions and 48 deletions

View File

@@ -221,6 +221,7 @@ static void lmeter_init(void)
lmeter_bg.body.padding.hor = LV_DPI / 20;
lmeter_bg.body.padding.inner = LV_DPI / 8;
lmeter_bg.line.color = LV_COLOR_WHITE;
lmeter_bg.line.width = 1;
theme.lmeter = &lmeter_bg;
#endif
@@ -232,7 +233,7 @@ static void gauge_init(void)
static lv_style_t gauge_bg;
lv_style_copy(&gauge_bg, theme.lmeter);
gauge_bg.line.color = LV_COLOR_BLACK;
gauge_bg.line.width = 3;
gauge_bg.line.width = 1;
theme.gauge = &gauge_bg;