From 746dcb06e7360cd1bcb40664999d09b9c697267c Mon Sep 17 00:00:00 2001 From: philmoz Date: Sun, 8 Oct 2023 19:10:40 +1100 Subject: [PATCH] chore(color): Set height of edit fields to match other UI elements (#4169) --- radio/src/gui/colorlcd/themes/etx_lv_theme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radio/src/gui/colorlcd/themes/etx_lv_theme.cpp b/radio/src/gui/colorlcd/themes/etx_lv_theme.cpp index 757cd7410b3..29ebefd2cf8 100644 --- a/radio/src/gui/colorlcd/themes/etx_lv_theme.cpp +++ b/radio/src/gui/colorlcd/themes/etx_lv_theme.cpp @@ -177,7 +177,7 @@ static void style_init(void) lv_style_init(&styles.field); lv_style_set_bg_opa(&styles.field, LV_OPA_COVER); lv_style_set_pad_top(&styles.field, 4); - lv_style_set_pad_bottom(&styles.field, 5); + lv_style_set_pad_bottom(&styles.field, 3); lv_style_set_pad_left(&styles.field, 4); lv_style_set_pad_right(&styles.field, 4);