summaryrefslogtreecommitdiff
path: root/src/displayapp
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2021-07-29 18:49:06 (GMT)
committerJF002 <JF002@users.noreply.github.com>2021-08-15 09:19:47 (GMT)
commitee44b6ff4998d6f4d0672c05c1f65c0a9692dc0d (patch)
treef055a6e2d50ca69adbb90c85813b5d904025883f /src/displayapp
parentbc829053718f925662ca1dcdc9856426dabef573 (diff)
Adjust inner padding in applist
Diffstat (limited to 'src/displayapp')
-rw-r--r--src/displayapp/screens/Tile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/Tile.cpp b/src/displayapp/screens/Tile.cpp
index a64320e..777b5bb 100644
--- a/src/displayapp/screens/Tile.cpp
+++ b/src/displayapp/screens/Tile.cpp
@@ -92,7 +92,7 @@ Tile::Tile(uint8_t screenID,
lv_obj_set_style_local_bg_opa(btnm1, LV_BTNMATRIX_PART_BTN, LV_STATE_DISABLED, LV_OPA_20);
lv_obj_set_style_local_bg_color(btnm1, LV_BTNMATRIX_PART_BTN, LV_STATE_DISABLED, lv_color_hex(0x111111));
lv_obj_set_style_local_pad_all(btnm1, LV_BTNMATRIX_PART_BG, LV_STATE_DEFAULT, 0);
- lv_obj_set_style_local_pad_inner(btnm1, LV_BTNMATRIX_PART_BG, LV_STATE_DEFAULT, 6);
+ lv_obj_set_style_local_pad_inner(btnm1, LV_BTNMATRIX_PART_BG, LV_STATE_DEFAULT, 10);
for (uint8_t i = 0; i < 6; i++) {
if (applications[i].application == Apps::None) {