1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

theme_material: bar, slider, sw padding fixes

This commit is contained in:
Gabor Kiss-Vamosi 2019-07-26 13:22:55 +02:00
parent fd6d7119f5
commit a4c6d511b7

View File

@ -226,10 +226,10 @@ static void bar_init(void)
bar_bg.body.grad_color = bar_bg.body.main_color;
bar_bg.body.radius = 3;
bar_bg.body.border.width = 0;
bar_bg.body.padding.left = LV_DPI / 12;
bar_bg.body.padding.right = LV_DPI / 12;
bar_bg.body.padding.top = LV_DPI / 12;
bar_bg.body.padding.bottom = LV_DPI / 12;
bar_bg.body.padding.left = LV_DPI / 16;
bar_bg.body.padding.right = LV_DPI / 16;
bar_bg.body.padding.top = LV_DPI / 16;
bar_bg.body.padding.bottom = LV_DPI / 16;
lv_style_copy(&bar_indic, &bar_bg);
bar_indic.body.main_color = lv_color_hsv_to_rgb(_hue, 85, 70);