1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-01 00:25:46 +01:00

update the buffer list on page load completion (the non-existant

showBufferList() was being called rather than updateBufferList())
This commit is contained in:
Doug Kearns
2007-05-24 16:54:03 +00:00
parent 362d0d5bf4
commit 9765f5be84

View File

@@ -104,7 +104,7 @@ nsBrowserStatusHandler.prototype =
vimperator.statusline.updateUrl(aRequest.URI.spec); vimperator.statusline.updateUrl(aRequest.URI.spec);
vimperator.statusline.updateProgress(""); vimperator.statusline.updateProgress("");
// also reset the buffer list, since the url titles are valid here // also reset the buffer list, since the url titles are valid here
showBufferList(true); updateBufferList();
} }
return 0; return 0;
}, },
@@ -1040,7 +1040,7 @@ function Vimperator()
vimperator.statusline.updateUrl(aRequest.URI.spec); vimperator.statusline.updateUrl(aRequest.URI.spec);
vimperator.statusline.updateProgress(""); vimperator.statusline.updateProgress("");
// also reset the buffer list, since the url titles are valid here // also reset the buffer list, since the url titles are valid here
showBufferList(true); updateBufferList();
} }
return 0; return 0;
}, },