Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In the timeline graph, color the initial up-arrow of a branch in the branch color, when graph coloring is enable. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d19b52a3cfa6d3f482c8ed0a5d98b027 |
User & Date: | drh 2015-03-30 20:34:39 |
Context
2015-03-30
| ||
22:00 | Rename "event" to "technote" throughout technote/event documentation. Previous renaming did not address every instance of the word "event". check-in: dc359323 user: andygoth tags: trunk | |
21:38 | Change Blitz defaults to no arrowheads, circular nodes, and colored rails check-in: b2a40fda user: jmoger tags: trunk | |
20:34 | In the timeline graph, color the initial up-arrow of a branch in the branch color, when graph coloring is enable. check-in: d19b52a3 user: drh tags: trunk | |
17:51 | Simplify and improve the skin-editing capability. Add the new "details.txt" skin file that contains skin settings used on the server-side. Add detail values for selecting white-background, rounded nodes, color graph lines, and for omitting arrowheads on verticle graph lines. check-in: 106c0909 user: drh tags: trunk | |
Changes
Changes to src/timeline.c.
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 |
@ }
@ var n = p.au.length;
@ for(var i=0; i<n; i+=2){
@ var x1 = p.au[i]*railPitch + left;
@ var x0 = x1>p.x ? p.x+7 : p.x-6;
@ var u = rowinfo[p.au[i+1]-1];
@ if(u.id<p.id){
@ drawBox(lineClr,x0,p.y,x1+1,p.y+1);
@ drawUpArrow(x1,u.y+6,p.y,p.fg||lineClr);
@ }else{
@ drawBox("#600000",x0,p.y,x1,p.y+1);
@ drawBox("#600000",x1-1,p.y,x1,u.y+1);
@ drawBox("#600000",x1,u.y,u.x-10,u.y+1);
@ var n = document.createElement("div"),
@ t = u.y-2,
@ l = u.x-11;
|
| | |
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 |
@ } @ var n = p.au.length; @ for(var i=0; i<n; i+=2){ @ var x1 = p.au[i]*railPitch + left; @ var x0 = x1>p.x ? p.x+7 : p.x-6; @ var u = rowinfo[p.au[i+1]-1]; @ if(u.id<p.id){ @ drawBox(u.fg||lineClr,x0,p.y,x1+1,p.y+1); @ drawUpArrow(x1,u.y+6,p.y,u.fg||lineClr); @ }else{ @ drawBox("#600000",x0,p.y,x1,p.y+1); @ drawBox("#600000",x1-1,p.y,x1,u.y+1); @ drawBox("#600000",x1,u.y,u.x-10,u.y+1); @ var n = document.createElement("div"), @ t = u.y-2, @ l = u.x-11; |