From 4ff76dffa1a85ddc7eaa530e6d3389dcccb8f95e Mon Sep 17 00:00:00 2001 From: faxe1008 Date: Tue, 15 Aug 2023 12:22:32 +0200 Subject: [PATCH] fix(kconfig): Change LV_CONF_SKIP default value (#4455) Signed-off-by: Fabian Blatz --- Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kconfig b/Kconfig index 01be188640..42ef1ea92d 100644 --- a/Kconfig +++ b/Kconfig @@ -6,8 +6,8 @@ menu "LVGL configuration" # without lv_conf.h file, the lv_conf_internal.h and # lv_conf_kconfig.h files are used instead. config LV_CONF_SKIP - bool "Uncheck this to use custom lv_conf.h" - default y + bool "Check this to not use custom lv_conf.h" + default n config LV_CONF_MINIMAL bool "LVGL minimal configuration."