Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a minor fault in the graph drawing javascript. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3a15daaa3f193b519d4fd110292fa65f |
| User & Date: | drh 2019-06-08 10:29:58.210 |
Context
|
2019-06-08
| ||
| 14:19 | Minor name refactoring and comment enhancements in graph.js. No logic changes. Improvements to the javascript compressor. Apply compression to "*/js.txt" files in addition to "*.js" files. ... (check-in: 786d6167fa user: drh tags: trunk) | |
| 10:29 | Fix a minor fault in the graph drawing javascript. ... (check-in: 3a15daaa3f user: drh tags: trunk) | |
|
2019-06-07
| ||
| 13:15 | Minor improvements to the copy-button logic. ... (check-in: 759fbda4e8 user: drh tags: trunk) | |
Changes
Changes to src/graph.js.
| ︙ | ︙ | |||
448 449 450 451 452 453 454 |
var u2 = tx.rowinfo[p.cu-tx.iTopRow];
var y2 = miLineY(u2);
drawCherrypickLine(x1,y1,null,y2);
}
}else if( mergeOffset ){
mergeLines[p.mo] = u.r<p.r ? -mergeOffset-mLine.w : mergeOffset;
x1 += mergeLines[p.mo];
| | | 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 |
var u2 = tx.rowinfo[p.cu-tx.iTopRow];
var y2 = miLineY(u2);
drawCherrypickLine(x1,y1,null,y2);
}
}else if( mergeOffset ){
mergeLines[p.mo] = u.r<p.r ? -mergeOffset-mLine.w : mergeOffset;
x1 += mergeLines[p.mo];
if( p.mu<p.id ){
drawMergeLine(x1,p.y+node.h/2,null,y1);
}
if( p.hasOwnProperty('cu') ){
var u2 = tx.rowinfo[p.cu-tx.iTopRow];
var y2 = miLineY(u2);
drawCherrypickLine(x1,y1,null,y2);
}
|
| ︙ | ︙ |