Don't show fetch more lines when there aren't any
This commit is contained in:
parent
583a4bab58
commit
ad68e32c08
2 changed files with 16 additions and 4 deletions
|
@ -432,6 +432,10 @@ function($rootScope,
|
|||
var setReadmarker = (buffer.lastSeen >= 0);
|
||||
buffer.lines.length = 0;
|
||||
buffer.requestedLines = 0;
|
||||
// Count number of lines recieved
|
||||
var newLength = lineinfo.objects[0].content.length;
|
||||
|
||||
// Parse the lines
|
||||
handlers.handleLineInfo(lineinfo, true);
|
||||
|
||||
if (setReadmarker) {
|
||||
|
@ -444,7 +448,14 @@ function($rootScope,
|
|||
// the read marker position correct
|
||||
buffer.lastSeen -= oldLength;
|
||||
}
|
||||
|
||||
// We request more lines, but didn't get more. No more lines!
|
||||
if(oldLength === newLength) {
|
||||
$rootScope.noMoreLines = true;
|
||||
}
|
||||
// We requested more lines than we got, no more lines.
|
||||
if(newLength < numLines) {
|
||||
$rootScope.noMoreLines = true;
|
||||
}
|
||||
$rootScope.loadingLines = false;
|
||||
// Scroll read marker to the center of the screen
|
||||
$rootScope.scrollWithBuffer(true);
|
||||
|
@ -583,6 +594,9 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
|||
$rootScope.$on('activeBufferChanged', function() {
|
||||
$rootScope.scrollWithBuffer(true);
|
||||
|
||||
// Reset no more lines
|
||||
$rootScope.noMoreLines = false;
|
||||
|
||||
var ab = models.getActiveBuffer();
|
||||
if (ab.requestedLines < $scope.lines) {
|
||||
// buffer has not been loaded, but some lines may already be present if they arrived after we connected
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue