]> Pileus Git - lackey/blobdiff - views/todo.c
Add bit flags for event and todo line items
[lackey] / views / todo.c
index d85f8a80496291b1cd6b8704fc8ec9da20791d8f..8ab6c9cb36537624d25b1a9a3b2860a76b1041be 100644 (file)
@@ -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;
 }