X-Git-Url: https://git.wpitchoune.net/gitweb/?p=ptask.git;a=blobdiff_plain;f=src%2Fui_tasktree.c;h=3a966225f1008c196dfce06ea2679c8d21aee586;hp=7dd49545782f300e2a6259f53a3ec7ea34aab8ef;hb=8e16d048071d7c880b118643b3beea50ede5b4c6;hpb=7d6027f8ed52593c0448ce94c0610689cc8f3b12 diff --git a/src/ui_tasktree.c b/src/ui_tasktree.c index 7dd4954..3a96622 100644 --- a/src/ui_tasktree.c +++ b/src/ui_tasktree.c @@ -32,7 +32,8 @@ enum { COL_DESCRIPTION, COL_PROJECT, COL_UUID, - COL_PRIORITY + COL_PRIORITY, + COL_URGENCY }; static int priority_to_int(const char *str) @@ -246,6 +247,7 @@ void ui_tasktree_update(struct task **tasks, const char *prj_filter) COL_PROJECT, prj, COL_UUID, (*tasks_cur)->uuid, COL_PRIORITY, (*tasks_cur)->priority, + COL_URGENCY, (*tasks_cur)->urgency, -1); } }