Fix issue with incorrect read marker on startup

This commit is contained in:
Lorenz Hübschle-Schneider 2014-02-10 19:24:10 +00:00
parent 7764fc6910
commit 40716ca649

View file

@ -390,7 +390,14 @@ function($rootScope,
buffer.lines.length = 0;
buffer.requestedLines = 0;
handlers.handleLineInfo(lineinfo, false, true);
buffer.lastSeen = buffer.lines.length - oldLength - 1;
if (oldLength > 0) {
// We're not initially loading lines into the buffer.
// Set the read marker to the beginning of the newly loaded lines
buffer.lastSeen = buffer.lines.length - oldLength - 1;
} else {
// Initial buffer open, set correct read marker position
buffer.lastSeen += buffer.lines.length;
}
$rootScope.loadingLines = false;
$rootScope.scrollWithBuffer(true);
});