Always show current buffer in list

This commit is contained in:
Tor Hveem 2013-10-11 23:47:47 +02:00
parent d797f4a305
commit c2bc034293

View file

@ -482,6 +482,10 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
$scope.hasUnread = function(buffer) {
if($scope.onlyUnread) {
// Always show current buffer in list
if (models.getActiveBuffer() == buffer) {
return true;
}
return (parseInt(buffer.unread) || 0) > 0;
}
return true;