Always show current buffer in list
This commit is contained in:
parent
d797f4a305
commit
c2bc034293
1 changed files with 4 additions and 0 deletions
|
@ -482,6 +482,10 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
|
|
||||||
$scope.hasUnread = function(buffer) {
|
$scope.hasUnread = function(buffer) {
|
||||||
if($scope.onlyUnread) {
|
if($scope.onlyUnread) {
|
||||||
|
// Always show current buffer in list
|
||||||
|
if (models.getActiveBuffer() == buffer) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
return (parseInt(buffer.unread) || 0) > 0;
|
return (parseInt(buffer.unread) || 0) > 0;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue