Fossil

Check-in [f16e1a0e]
Login

Check-in [f16e1a0e]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix a timeline bug, showing an unintended arrow when closing a fork.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: f16e1a0eab404fcb835983c6d2049e7450dd2fbc
User & Date: jan.nijtmans 2016-07-05 14:23:00
Context
2016-07-05
14:40
Add the "fossil shell" command. ... (check-in: ebcb9dff user: drh tags: trunk)
14:30
(cherry-pick) Fix a timeline bug, showing an unintended arrow when closing a fork. ... (check-in: 4cae5c94 user: jan.nijtmans tags: branch-1.35)
14:23
Fix a timeline bug, showing an unintended arrow when closing a fork. ... (check-in: f16e1a0e user: jan.nijtmans tags: trunk)
2016-06-28
09:10
Unnecessary type='text/javascript on <script> tag. ... (check-in: 5cdaeb0d user: jan.nijtmans tags: trunk)
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to src/graph.c.

472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
  /* Assign rails to all rows that are still unassigned.
  */
  for(pRow=p->pLast; pRow; pRow=pRow->pPrev){
    int parentRid;

    if( pRow->iRail>=0 ){
      if( pRow->pChild==0 && !pRow->timeWarp ){
        if( omitDescenders || pRow->isLeaf ){
          /* no-op */
        }else{
          riser_to_top(pRow);
        }
      }
      continue;
    }







|







472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
  /* Assign rails to all rows that are still unassigned.
  */
  for(pRow=p->pLast; pRow; pRow=pRow->pPrev){
    int parentRid;

    if( pRow->iRail>=0 ){
      if( pRow->pChild==0 && !pRow->timeWarp ){
        if( omitDescenders || count_nonbranch_children(pRow->rid)==0 ){
          /* no-op */
        }else{
          riser_to_top(pRow);
        }
      }
      continue;
    }