diff options
author | Frederic Culot <calcurse@culot.org> | 2006-10-28 13:11:21 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2006-10-28 13:11:21 +0000 |
commit | d240cef7e0da6c9a448c8fc7afc542759f5eb119 (patch) | |
tree | fb561fdb130341b9355d8d6d2a2e8754462932ba | |
parent | 7a84b132d16194dce77ab5ab42b695bda551642e (diff) | |
download | calcurse-d240cef7e0da6c9a448c8fc7afc542759f5eb119.tar.gz calcurse-d240cef7e0da6c9a448c8fc7afc542759f5eb119.zip |
display_item() call modified in update_todo_panel()
-rwxr-xr-x | src/calcurse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/calcurse.c b/src/calcurse.c index 4e9d5e8..a0eb279 100755 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -1,4 +1,4 @@ -/* $calcurse: calcurse.c,v 1.24 2006/10/28 10:32:29 culot Exp $ */ +/* $calcurse: calcurse.c,v 1.25 2006/10/28 13:11:21 culot Exp $ */ /* * Calcurse - text-based organizer @@ -1189,7 +1189,7 @@ void update_todo_panel(void) if (t_realpos >= 0 && t_realpos < max_items) { sprintf(mesg, "%d. ", i->id); strncat(mesg, i->mesg, strlen(i->mesg)); - display_item(twin, incolor, mesg, + display_item(twin, incolor, mesg, 0, len, y_offset, x_offset); y_offset = y_offset + todo_lines; } |