Fix renderer pagination updating too late, causing empty message list when changing msgs per page

This commit is contained in:
chylex 2016-10-30 22:19:04 +01:00
parent caaaedcf73
commit a94b5a0358

View File

@ -66,9 +66,9 @@ document.addEventListener("DOMContentLoaded", () => {
var updateMessageList = function(){
var mpp = GUI.getOptionMessagesPerPage();
updateNavigation(false);
GUI.updateMessageList(STATE.getMessageList(mpp*(currentPage-1), mpp));
GUI.scrollMessagesToTop();
updateNavigation(false);
};
var updateNavigation = function(reset){