summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xprojgraph8
1 files changed, 4 insertions, 4 deletions
diff --git a/projgraph b/projgraph
index 1a9813e..41636ac 100755
--- a/projgraph
+++ b/projgraph
@@ -21,10 +21,10 @@ statuses = {
def nodeattrs(done):
attrs = {
unknown: {'shape': 'diamond'},
- blocked: {'color': '#777777', 'shape': 'rectangle'},
- finished: {'color': '#eeeeee'},
- ready: {'color': '#bbbbbb'},
- next: {'color': '#00cc00'},
+ blocked: {'fillcolor': '#ff0000', 'shape': 'rectangle'},
+ finished: {'fillcolor': '#eeeeee'},
+ ready: {'fillcolor': '#ffffff'},
+ next: {'fillcolor': '#00cc00'},
}
a = dict(attrs[done])