diff options
Diffstat (limited to 'src/ui-calendar.c')
-rw-r--r-- | src/ui-calendar.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui-calendar.c b/src/ui-calendar.c index 6bc1b0f..7854048 100644 --- a/src/ui-calendar.c +++ b/src/ui-calendar.c @@ -394,6 +394,7 @@ draw_monthly_view(struct scrollwin *sw, struct date *current_day, unsigned yr, mo; int w, ofs_x, ofs_y; int item_this_day = 0; + struct tm t = get_first_weekday(sunday_first); mo = slctd_day.mm; yr = slctd_day.yyyy; @@ -416,6 +417,9 @@ draw_monthly_view(struct scrollwin *sw, struct date *current_day, (int)((ymd_to_scalar(yr, mo, 1 + sunday_first) - (long)1) % 7L); + /* Print the week number. */ + draw_week_number(sw, t); + /* Write the current month and year on top of the calendar */ WINS_CALENDAR_LOCK; if (yr * YEARINMONTHS + mo != monthly_view_cache_month) { |