Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | The dotted vertical lines in the graph should use the default color, not the foreground color of the node. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
47b080876ba5650b8b8c04ee947fd308 |
User & Date: | drh 2019-05-14 14:33:31.634 |
Context
2019-05-14
| ||
14:47 | Add a new TIMELINE flag to control the dotted vertical lines that indicate omitted nodes. Only enable the dotted verticals where they make sense. ... (check-in: fff033fe user: drh tags: trunk) | |
14:33 | The dotted vertical lines in the graph should use the default color, not the foreground color of the node. ... (check-in: 47b08087 user: drh tags: trunk) | |
13:47 | Improvements to the display of the "Context" graph on check-in /info pages. ... (check-in: 01d8bf97 user: drh tags: trunk) | |
Changes
Changes to src/graph.js.
︙ | ︙ | |||
241 242 243 244 245 246 247 | var e = document.getElementById("mc"+p.id); if(e) e.style.backgroundColor = p.bg; e = document.getElementById("md"+p.id); if(e) e.style.backgroundColor = p.bg; } if( p.r<0 ) return; if( p.u>0 ) drawUpArrow(p,tx.rowinfo[p.u-tx.iTopRow],p.fg); | | | 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | var e = document.getElementById("mc"+p.id); if(e) e.style.backgroundColor = p.bg; e = document.getElementById("md"+p.id); if(e) e.style.backgroundColor = p.bg; } if( p.r<0 ) return; if( p.u>0 ) drawUpArrow(p,tx.rowinfo[p.u-tx.iTopRow],p.fg); if( p.sb>0 ) drawUpDotted(p,tx.rowinfo[p.sb-tx.iTopRow],null); var cls = node.cls; if( p.hasOwnProperty('mi') && p.mi.length ) cls += " merge"; if( p.f&1 ) cls += " leaf"; var n = drawBox(cls,p.bg,p.x,p.y); n.id = "tln"+p.id; n.onclick = clickOnNode; n.style.zIndex = 10; |
︙ | ︙ |