Merge pull request #862 from graymalkin/master
Added cap on max number of unread lines to load
This commit is contained in:
commit
d0bf9dc4cf
1 changed files with 3 additions and 5 deletions
|
@ -145,11 +145,9 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
$rootScope.$on('activeBufferChanged', function(event, unreadSum) {
|
$rootScope.$on('activeBufferChanged', function(event, unreadSum) {
|
||||||
var ab = models.getActiveBuffer();
|
var ab = models.getActiveBuffer();
|
||||||
|
|
||||||
// Discard surplus lines. This is done *before* lines are fetched because that saves us the effort of special handling for the
|
// Discard unread lines above 2 screenfuls. We can click through to get more if needs be
|
||||||
// case where a buffer is opened for the first time ;)
|
// This is to keep GB responsive when loading buffers which have seen a lot of traffic. See issue #859
|
||||||
var minRetainUnread = ab.lines.length - unreadSum + 5; // do not discard unread lines and keep 5 additional lines for context
|
var linesToRemove = ab.lines.length - (2 * $scope.lines_per_screen + 10);
|
||||||
var surplusLines = ab.lines.length - (2 * $scope.lines_per_screen + 10); // retain up to 2*(screenful + 10) + 10 lines because magic numbers
|
|
||||||
var linesToRemove = Math.min(minRetainUnread, surplusLines);
|
|
||||||
|
|
||||||
if (linesToRemove > 0) {
|
if (linesToRemove > 0) {
|
||||||
ab.lines.splice(0, linesToRemove); // remove the lines from the buffer
|
ab.lines.splice(0, linesToRemove); // remove the lines from the buffer
|
||||||
|
|
Loading…
Reference in a new issue