diff options
author | Frederic Culot <calcurse@culot.org> | 2006-08-22 21:06:24 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2006-08-22 21:06:24 +0000 |
commit | 5643785c8bee4fbd441ffe518554709ac51d9d0a (patch) | |
tree | ee79a6be3ec9cc1750be0e931c539937642af48a | |
parent | 4d4823cc1b89ec557518d568b5641f877d2722e7 (diff) | |
download | calcurse-5643785c8bee4fbd441ffe518554709ac51d9d0a.tar.gz calcurse-5643785c8bee4fbd441ffe518554709ac51d9d0a.zip |
screen refreshing process ameliorated in add_item()
-rwxr-xr-x | src/calcurse.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/calcurse.c b/src/calcurse.c index e9a1e65..aaddc5d 100755 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -1,4 +1,4 @@ -/* $calcurse: calcurse.c,v 1.5 2006/08/19 15:01:13 culot Exp $ */ +/* $calcurse: calcurse.c,v 1.6 2006/08/22 21:06:24 culot Exp $ */ /* * Calcurse - text-based organizer @@ -46,6 +46,7 @@ #include "day.h" #include "apoint.h" #include "event.h" +#include "recur.h" #include "todo.h" #include "args.h" @@ -962,11 +963,8 @@ void add_item(void) Id); } hilt_app++; - update_app_panel(sel_year, sel_month, sel_day); } erase_window_part(swin, 0, 0, nc_bar, nl_bar); - status_bar(which_pan, colr, nc_bar, nl_bar); - doupdate(); } /* Updates the ToDo panel */ |