From 9765f5be846832fbaac1aaee2f866421284d49cd Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 24 May 2007 16:54:03 +0000 Subject: [PATCH] update the buffer list on page load completion (the non-existant showBufferList() was being called rather than updateBufferList()) --- chrome/content/vimperator/vimperator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/vimperator/vimperator.js b/chrome/content/vimperator/vimperator.js index bfce3b2e..428ff8b2 100644 --- a/chrome/content/vimperator/vimperator.js +++ b/chrome/content/vimperator/vimperator.js @@ -104,7 +104,7 @@ nsBrowserStatusHandler.prototype = vimperator.statusline.updateUrl(aRequest.URI.spec); vimperator.statusline.updateProgress(""); // also reset the buffer list, since the url titles are valid here - showBufferList(true); + updateBufferList(); } return 0; }, @@ -1040,7 +1040,7 @@ function Vimperator() vimperator.statusline.updateUrl(aRequest.URI.spec); vimperator.statusline.updateProgress(""); // also reset the buffer list, since the url titles are valid here - showBufferList(true); + updateBufferList(); } return 0; },