From fb40565b8ce8f3dfd39ad167288f93fc8cf81f8a Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 8 Feb 2007 00:52:43 +0000 Subject: [PATCH] Fix for keyboard shortcuts not working after Z pane display (sometime since Beta 3 -- maybe switch from collapsed to hidden?) --- chrome/content/zotero/overlay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/overlay.js b/chrome/content/zotero/overlay.js index 08fc274c6..267a84e45 100644 --- a/chrome/content/zotero/overlay.js +++ b/chrome/content/zotero/overlay.js @@ -194,7 +194,7 @@ var ZoteroPane = new function() document.getElementById('zotero-splitter').setAttribute('hidden', !visible); if (visible) { - document.getElementById('zotero-pane').focus(); + document.getElementById('zotero-pane').click(); } else { document.getElementById('content').setAttribute('collapsed', false);