hermet pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=d5ad17cc051a5b97eadea2e793ee62d52f150560
commit d5ad17cc051a5b97eadea2e793ee62d52f150560 Author: Jinyong Park <[email protected]> Date: Tue Feb 2 19:47:28 2016 +0900 fix calendar today bug Summary: After today mark appear once on calendar, it never disappear when user change calendar's year or month Test Plan: elementary_test calendar2 Reviewers: Hermet Differential Revision: https://phab.enlightenment.org/D3612 --- AUTHORS | 1 + src/lib/elm_authors.h | 1 + src/lib/elm_calendar.c | 2 -- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 85483ed..4b5522f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -168,3 +168,4 @@ Godly T Alias <[email protected]> <[email protected]> Shashank Pandey <[email protected]> <[email protected]> Divyesh Purohit <[email protected]> <[email protected]> Minkyu Kang <[email protected]> +Jinyong Park <[email protected]> diff --git a/src/lib/elm_authors.h b/src/lib/elm_authors.h index 3ae5625..5d583a1 100644 --- a/src/lib/elm_authors.h +++ b/src/lib/elm_authors.h @@ -165,6 +165,7 @@ * @author Godly T Alias <godly.talias@@samsung.com> * @author Divyesh Purohit <[email protected]> <[email protected]> * @author Minkyu Kang <[email protected]> + * @author Jinyong Park <[email protected]> * * Please contact <[email protected]> to get in * contact with the developers and maintainers. diff --git a/src/lib/elm_calendar.c b/src/lib/elm_calendar.c index 6e7a5a1..6d65290 100644 --- a/src/lib/elm_calendar.c +++ b/src/lib/elm_calendar.c @@ -252,7 +252,6 @@ _enable(Elm_Calendar_Data *sd, snprintf(emission, sizeof(emission), "cit_%i,enable", it); elm_layout_signal_emit(sd->obj, emission, "elm"); - sd->today_it = it; } static inline void @@ -263,7 +262,6 @@ _disable(Elm_Calendar_Data *sd, snprintf(emission, sizeof(emission), "cit_%i,disable", it); elm_layout_signal_emit(sd->obj, emission, "elm"); - sd->today_it = it; } static char * --
