Merge pull request #1003 from JulienPalard/jump-on-unread-messages-even-if-hidden

jump to buffers with notifiction with Alt-A, even if hidden.
update-travis
Lorenz Hübschle-Schneider 7 years ago committed by GitHub
commit ca97da8513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      js/glowingbear.js

@ -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
} }

Loading…
Cancel
Save