[TIZENIOT-1617]Adjusted Spacing between time & AM/Pm 49/240649/3
authorallu.k <allu.k@samsung.com>
Mon, 10 Aug 2020 09:20:45 +0000 (14:50 +0530)
committerAmritanshu Pandia <a.pandia1@samsung.com>
Tue, 11 Aug 2020 06:27:55 +0000 (06:27 +0000)
Change-Id: I94ae2abbaff4bf6cca3821c5c1a815bc8786754c

src/modules/clock/clock.c

index 93ec539..d5d210d 100644 (file)
@@ -238,9 +238,9 @@ static Eina_Bool indicator_clock_changed_cb(void *data)
 
        if (clock_mode == INDICATOR_CLOCK_MODE_12H) {
                if (apm_position == 0) {
-                       len = snprintf(buf, sizeof(buf), "%s %s", ampm_str, time_str);
+                       len = snprintf(buf, sizeof(buf), "%s<font_size=%d> </font_size>%s", ampm_str,font_size ,time_str);
                } else {
-                       len = snprintf(buf, sizeof(buf), "%s %s", time_str, ampm_str);
+                       len = snprintf(buf, sizeof(buf), "%s<font_size=%d> </font_size>%s", time_str,font_size, ampm_str);
                }
        } else {
                len = snprintf(buf, sizeof(buf), "%s", time_str);