From 53e62aa6accffa09f8722b6206abb2779d1040bc Mon Sep 17 00:00:00 2001 From: Jagrat Patidar Date: Fri, 11 Oct 2019 22:21:50 +0530 Subject: [PATCH] This patch changes font size of indicator for IOT profile to 20. Change-Id: I583f5f8355bf1861ad42eade95d4b8bcf0693378 Signed-off-by: Jagrat Patidar --- src/modules/clock/clock.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/modules/clock/clock.c b/src/modules/clock/clock.c index 60523b0..7e26d68 100644 --- a/src/modules/clock/clock.c +++ b/src/modules/clock/clock.c @@ -32,9 +32,15 @@ #define SYSTEM_RESUME "system_wakeup" +#ifdef TIZEN_PROFILE_COMMON +#define TIME_FONT_SIZE_24 20 +#define TIME_FONT_SIZE_12 20 +#define AMPM_FONT_SIZE 19 +#else #define TIME_FONT_SIZE_24 30 #define TIME_FONT_SIZE_12 30 #define AMPM_FONT_SIZE 29 +#endif #define TIME_FONT_COLOR 200, 200, 200, 255 #define AMPM_FONT_COLOR 200, 200, 200, 255 -- 2.7.4