Add process_visible() call to maybe_select_closest().

This fixes a regression where we removed a call to
unread_ops.process_visible() inside of stream_list.js.  Now
we call it from within narrow.activate() in the the
maybe_select_closest() callback.
This commit is contained in:
Steve Howell 2017-05-31 12:40:57 -06:00
parent 2efecd4809
commit cc81b7892d
1 changed files with 1 additions and 0 deletions

View File

@ -196,6 +196,7 @@ exports.activate = function (raw_operators, opts) {
// narrowing
message_viewport.set_message_offset(then_select_offset);
}
unread_ops.process_visible();
}
}