From 0f7b7d0ec7fdd6eae3ba092d7b679c702f6c234d Mon Sep 17 00:00:00 2001 From: Frederic Culot Date: Sun, 10 Dec 2006 14:52:50 +0000 Subject: get_date() updated so that it does not modify the selected day inside calendar --- src/calcurse.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/calcurse.c b/src/calcurse.c index 063eaef..bc741fb 100755 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -1,4 +1,4 @@ -/* $calcurse: calcurse.c,v 1.28 2006/12/08 08:41:41 culot Exp $ */ +/* $calcurse: calcurse.c,v 1.29 2006/12/10 14:52:50 culot Exp $ */ /* * Calcurse - text-based organizer @@ -566,6 +566,11 @@ void init_vars(int colr) // Attribute definitions for color and non-color terminals custom_init_attr(colr); + + // Start at the current date + sel_year = year; + sel_month = month; + sel_day = day; } /* Notify-bar init */ @@ -702,9 +707,6 @@ void get_date(void) month = atoi(current_month); day = atoi(current_day); year = atoi(current_year); - sel_year = year; - sel_month = month; - sel_day = day; } /* Create all the windows */ -- cgit v1.2.3