diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-12-10 17:59:51 -0500 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-14 12:41:25 -0500 |
commit | 5ec1eefb2cbefdbd944d470c3797a93d9b805d3c (patch) | |
tree | bcf0cfbb2ee381da7a3fd948851eb6098e199af6 /app/src/display/widgets/Kconfig | |
parent | 0d4476d148c71a24398145aafe8fb8adf9df1809 (diff) |
refactor(display): Update to new LVGL v7.x API.
PR: #467
Diffstat (limited to 'app/src/display/widgets/Kconfig')
-rw-r--r-- | app/src/display/widgets/Kconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/src/display/widgets/Kconfig b/app/src/display/widgets/Kconfig index 1dbffb5..000e0dc 100644 --- a/app/src/display/widgets/Kconfig +++ b/app/src/display/widgets/Kconfig @@ -5,14 +5,14 @@ config ZMK_WIDGET_BATTERY_STATUS bool "Widget for battery charge information, using small icons" depends on BT default y if BT - select LVGL_OBJ_LABEL - select LVGL_BUILD_IN_FONT_ROBOTO_16 + select LVGL_USE_LABEL + select LVGL_FONT_MONTSERRAT_16 config ZMK_WIDGET_OUTPUT_STATUS bool "Widget for keyboard output status icons" depends on BT default y if BT - select LVGL_OBJ_LABEL - select LVGL_BUILD_IN_FONT_ROBOTO_16 - + select LVGL_USE_LABEL + select LVGL_FONT_MONTSERRAT_16 + endmenu |