From 7c958f4bd3d5349fab7af75213152906a5b8bef1 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 7 Mar 2014 02:21:39 -0500 Subject: [PATCH] Show "Loading items list..." in middle pane on window load Otherwise with async loading the pane appears blank before the message appears --- chrome/content/zotero/zoteroPane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index a21554020f..652fffcdbe 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -147,7 +147,7 @@ var ZoteroPane = new function() function _loadPane() { if(!Zotero || !Zotero.initialized || Zotero.isConnector) return; - ZoteroPane_Local.clearItemsPaneMessage(); + ZoteroPane_Local.setItemsPaneMessage(Zotero.getString('pane.items.loading')); //Initialize collections view ZoteroPane_Local.collectionsView = new Zotero.CollectionTreeView();