From f5ad2b3e14cde20d3d54ed72f33e3d0262564fcc Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Thu, 23 Apr 2020 20:39:47 +0200 Subject: [PATCH] uddate display size limit in lv_conf_templ.h --- lv_conf_template.h | 4 ++-- src/lv_conf_internal.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lv_conf_template.h b/lv_conf_template.h index 84b622d3c..86de61733 100644 --- a/lv_conf_template.h +++ b/lv_conf_template.h @@ -56,7 +56,7 @@ /* Dot Per Inch: used to initialize default sizes. * E.g. a button with width = LV_DPI / 2 -> half inch wide * (Not so important, you can adjust it to modify default sizes and spaces)*/ -#define LV_DPI 100 /*[px]*/ +#define LV_DPI 130 /*[px]*/ /* The the real width of the display changes some default values: * default object sizes, layout of examples, etc. @@ -65,7 +65,7 @@ * The 4th is extra large which has no upper limit so not listed here * The upper limit of the categories are set below in 0.1 inch unit. */ -#define LV_DISP_SMALL_LIMIT 20 +#define LV_DISP_SMALL_LIMIT 25 #define LV_DISP_MEDIUM_LIMIT 45 #define LV_DISP_LARGE_LIMIT 65 diff --git a/src/lv_conf_internal.h b/src/lv_conf_internal.h index f6e741260..7abfa6de4 100644 --- a/src/lv_conf_internal.h +++ b/src/lv_conf_internal.h @@ -86,7 +86,7 @@ * E.g. a button with width = LV_DPI / 2 -> half inch wide * (Not so important, you can adjust it to modify default sizes and spaces)*/ #ifndef LV_DPI -#define LV_DPI 100 /*[px]*/ +#define LV_DPI 130 /*[px]*/ #endif /* The the real width of the display changes some default values: @@ -97,7 +97,7 @@ * The upper limit of the categories are set below in 0.1 inch unit. */ #ifndef LV_DISP_SMALL_LIMIT -#define LV_DISP_SMALL_LIMIT 20 +#define LV_DISP_SMALL_LIMIT 25 #endif #ifndef LV_DISP_MEDIUM_LIMIT #define LV_DISP_MEDIUM_LIMIT 45