Fossil SCM
The dotted vertical lines in the graph should use the default color, not the foreground color of the node.
Commit
47b080876ba5650b8b8c04ee947fd308a31471794c6b4073ccdcf7667cdca828
Parent
01d8bf97e206fc8…
1 file changed
+1
-1
+1
-1
| --- src/graph.js | ||
| +++ src/graph.js | ||
| @@ -243,11 +243,11 @@ | ||
| 243 | 243 | e = document.getElementById("md"+p.id); |
| 244 | 244 | if(e) e.style.backgroundColor = p.bg; |
| 245 | 245 | } |
| 246 | 246 | if( p.r<0 ) return; |
| 247 | 247 | if( p.u>0 ) drawUpArrow(p,tx.rowinfo[p.u-tx.iTopRow],p.fg); |
| 248 | - if( p.sb>0 ) drawUpDotted(p,tx.rowinfo[p.sb-tx.iTopRow],p.fg); | |
| 248 | + if( p.sb>0 ) drawUpDotted(p,tx.rowinfo[p.sb-tx.iTopRow],null); | |
| 249 | 249 | var cls = node.cls; |
| 250 | 250 | if( p.hasOwnProperty('mi') && p.mi.length ) cls += " merge"; |
| 251 | 251 | if( p.f&1 ) cls += " leaf"; |
| 252 | 252 | var n = drawBox(cls,p.bg,p.x,p.y); |
| 253 | 253 | n.id = "tln"+p.id; |
| 254 | 254 |
| --- src/graph.js | |
| +++ src/graph.js | |
| @@ -243,11 +243,11 @@ | |
| 243 | e = document.getElementById("md"+p.id); |
| 244 | if(e) e.style.backgroundColor = p.bg; |
| 245 | } |
| 246 | if( p.r<0 ) return; |
| 247 | if( p.u>0 ) drawUpArrow(p,tx.rowinfo[p.u-tx.iTopRow],p.fg); |
| 248 | if( p.sb>0 ) drawUpDotted(p,tx.rowinfo[p.sb-tx.iTopRow],p.fg); |
| 249 | var cls = node.cls; |
| 250 | if( p.hasOwnProperty('mi') && p.mi.length ) cls += " merge"; |
| 251 | if( p.f&1 ) cls += " leaf"; |
| 252 | var n = drawBox(cls,p.bg,p.x,p.y); |
| 253 | n.id = "tln"+p.id; |
| 254 |
| --- src/graph.js | |
| +++ src/graph.js | |
| @@ -243,11 +243,11 @@ | |
| 243 | e = document.getElementById("md"+p.id); |
| 244 | if(e) e.style.backgroundColor = p.bg; |
| 245 | } |
| 246 | if( p.r<0 ) return; |
| 247 | if( p.u>0 ) drawUpArrow(p,tx.rowinfo[p.u-tx.iTopRow],p.fg); |
| 248 | if( p.sb>0 ) drawUpDotted(p,tx.rowinfo[p.sb-tx.iTopRow],null); |
| 249 | var cls = node.cls; |
| 250 | if( p.hasOwnProperty('mi') && p.mi.length ) cls += " merge"; |
| 251 | if( p.f&1 ) cls += " leaf"; |
| 252 | var n = drawBox(cls,p.bg,p.x,p.y); |
| 253 | n.id = "tln"+p.id; |
| 254 |