summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@qvarnlabs.com>2019-09-09 12:02:53 +0300
committerLars Wirzenius <liw@qvarnlabs.com>2019-09-09 12:02:53 +0300
commitc909dc2cf3b65992eca761d6508d4b45ea255d9f (patch)
tree12112b73e136024c9104909c3e4c758b9bcc1472
parent7d9f7182cb3dfffd7c9dcf54fc816c2b876c5f79 (diff)
downloadql-ikiwiki-publish-c909dc2cf3b65992eca761d6508d4b45ea255d9f.tar.gz
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.
-rwxr-xr-xprojgraph2
1 files changed, 1 insertions, 1 deletions
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'},