Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Reduce automatic scroll offset when multiple ranges are selected |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
d46491d6e66f9a85e780e7eee44f6359 |
| User & Date: | andygoth 2018-06-12 18:52:11.302 |
Context
|
2018-06-13
| ||
| 02:02 | Incomplete implementation of the "fossil grep" command. ... (check-in: c5a98aa0ba user: drh tags: trunk) | |
|
2018-06-12
| ||
| 18:52 | Reduce automatic scroll offset when multiple ranges are selected ... (check-in: d46491d6e6 user: andygoth tags: trunk) | |
|
2018-06-11
| ||
| 20:36 | Disable the time_fudge corrections for check-ins that have mtimes that are modified using a tag. ... (check-in: e08f9c0423 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
1905 1906 1907 1908 1909 1910 1911 |
if( iEnd<iStart ) iEnd = iStart;
db_multi_exec(
"INSERT OR REPLACE INTO lnos VALUES(%d,%d)", iStart, iEnd
);
iStart = iEnd = atoi(&zLn[i++]);
}while( zLn[i] && iStart && iEnd );
}
| | | 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 |
if( iEnd<iStart ) iEnd = iStart;
db_multi_exec(
"INSERT OR REPLACE INTO lnos VALUES(%d,%d)", iStart, iEnd
);
iStart = iEnd = atoi(&zLn[i++]);
}while( zLn[i] && iStart && iEnd );
}
db_prepare(&q, "SELECT min(iStart), max(iEnd) FROM lnos");
if( db_step(&q)==SQLITE_ROW ){
iStart = db_column_int(&q, 0);
iEnd = db_column_int(&q, 1);
iTop = iStart - 15 + (iEnd-iStart)/4;
if( iTop>iStart - 2 ) iTop = iStart-2;
}
db_finalize(&q);
|
| ︙ | ︙ |