jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=4255c34f7a8dfcba7fe585fd773fa6f9157f2829
commit 4255c34f7a8dfcba7fe585fd773fa6f9157f2829 Author: Jean-Philippe Andre <[email protected]> Date: Mon Nov 13 15:39:53 2017 +0900 calendar: Remove invalid ref to elm enum Thanks @JackDanielz for the report. This does not solve your actual concern, though. --- src/lib/elementary/efl_ui_calendar.eo | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/lib/elementary/efl_ui_calendar.eo b/src/lib/elementary/efl_ui_calendar.eo index 43d4508516..5125f2e9cd 100644 --- a/src/lib/elementary/efl_ui_calendar.eo +++ b/src/lib/elementary/efl_ui_calendar.eo @@ -26,13 +26,14 @@ class Efl.Ui.Calendar (Efl.Ui.Layout, Efl.Ui.Focus.Composition, Elm.Interface.At ]] methods { @property first_day_of_week { - [[The first day of week to use on calendar widgets'.]] - set { - } - get { - } + [[The first day of week to use on calendar widgets. + + This is the day that will appear in the left-most column (eg. Monday + in France or Sunday in the US). + ]] values { - day: Efl.Ui.Calendar.Weekday(Efl.Ui.Calendar.Weekday.sunday); [[Weekday enum value, see @Elm.Calendar.Weekday]] + day: Efl.Ui.Calendar.Weekday(Efl.Ui.Calendar.Weekday.sunday); + [[The first day of the week.]] } } @property date_min { --
