discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=b8bfd9e7af8dfe7e3bb5dbccdcf4a840b0ff31f3
commit b8bfd9e7af8dfe7e3bb5dbccdcf4a840b0ff31f3 Author: Mike Blumenkrantz <[email protected]> Date: Fri Jul 14 18:44:22 2017 -0400 update time gadget date string during clock timer fix T5700 --- src/modules/time/clock.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/time/clock.c b/src/modules/time/clock.c index 7354e0a1a..76bc607ee 100644 --- a/src/modules/time/clock.c +++ b/src/modules/time/clock.c @@ -199,6 +199,8 @@ _clock_timer(void *d EINA_UNUSED) seconds |= inst->cfg->show_seconds; sec = time_string_format(inst, buf, sizeof(buf)); elm_object_part_text_set(inst->o_clock, "e.text", buf); + time_datestring_format(inst, buf, sizeof(buf) - 1); + elm_object_part_text_set(inst->o_clock, "e.text.sub", buf); _eval_instance_size(inst); } sec = seconds ? 1 : (61 - sec); --
