X-Git-Url: http://pileus.org/git/?p=lackey;a=blobdiff_plain;f=views%2Ftodo.c;h=8ab6c9cb36537624d25b1a9a3b2860a76b1041be;hp=d85f8a80496291b1cd6b8704fc8ec9da20791d8f;hb=73c73a83c246975dd04df36b94cb381d315dc2ad;hpb=efecad11ff685dfef0f43d28b76f7d9a33d4780b diff --git a/views/todo.c b/views/todo.c index d85f8a8..8ab6c9c 100644 --- a/views/todo.c +++ b/views/todo.c @@ -37,7 +37,7 @@ static int print_todos(WINDOW *win, int row, todo_t *todos, status_t low, status int n = 0; for (todo_t *cur = todos; cur; cur = cur->next) if (low <= cur->status && cur->status <= high) - todo_line(win, cur, row+n++, 4, COLS-4, 1); + todo_line(win, cur, row+n++, 4, COLS-4, SHOW_DETAILS); return n; }