get_date() updated so that it does not modify the selected day inside calendar

This commit is contained in:
Frederic Culot 2006-12-10 14:52:50 +00:00
parent 650ac9dfe7
commit 0f7b7d0ec7

View File

@ -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 * Calcurse - text-based organizer
@ -566,6 +566,11 @@ void init_vars(int colr)
// Attribute definitions for color and non-color terminals // Attribute definitions for color and non-color terminals
custom_init_attr(colr); custom_init_attr(colr);
// Start at the current date
sel_year = year;
sel_month = month;
sel_day = day;
} }
/* Notify-bar init */ /* Notify-bar init */
@ -702,9 +707,6 @@ void get_date(void)
month = atoi(current_month); month = atoi(current_month);
day = atoi(current_day); day = atoi(current_day);
year = atoi(current_year); year = atoi(current_year);
sel_year = year;
sel_month = month;
sel_day = day;
} }
/* Create all the windows */ /* Create all the windows */