jump to buffers with notifiction with Alt-A, even if hidden.

This commit is contained in:
Julien Palard 2018-04-21 18:51:32 +02:00
parent 63e0d314dc
commit b956dea7c1

View file

@ -725,7 +725,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
if (buffer.pinned) { if (buffer.pinned) {
return true; return true;
} }
return (buffer.unread > 0 || buffer.notification > 0) && !buffer.hidden; return (buffer.unread > 0 && !buffer.hidden) || buffer.notification > 0;
} }
return !buffer.hidden; return !buffer.hidden;
}; };
@ -796,7 +796,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
// Try to find buffer with notification // Try to find buffer with notification
for (i in sortedBuffers) { for (i in sortedBuffers) {
buffer = sortedBuffers[i]; buffer = sortedBuffers[i];
if (buffer.notification > 0 && !buffer.hidden) { if (buffer.notification > 0) {
$scope.setActiveBuffer(buffer.id); $scope.setActiveBuffer(buffer.id);
return; // return instead of break so that the second for loop isn't executed return; // return instead of break so that the second for loop isn't executed
} }