From c909dc2cf3b65992eca761d6508d4b45ea255d9f Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 9 Sep 2019 12:02:53 +0300 Subject: Change: shape of a finished task This way, finished tasks differ from ready/next tasks by both shape and colour, which is good for colour blind people or when printing without colour. --- projgraph | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projgraph b/projgraph index a05d951..2e3b0ca 100755 --- a/projgraph +++ b/projgraph @@ -24,7 +24,7 @@ def nodeattrs(done): attrs = { unknown: {'fillcolor': '#ff0000', 'shape': 'diamond'}, blocked: {'fillcolor': '#f4bada', 'shape': 'rectangle'}, - finished: {'fillcolor': '#eeeeee'}, + finished: {'fillcolor': '#eeeeee', 'shape': 'circle'}, ready: {'fillcolor': '#ffffff'}, next: {'fillcolor': '#00cc00'}, goal: {'fillcolor': '#00eeee', 'shape': 'diamond'}, -- cgit v1.2.1