From e54665cf4961822c51245372017be4199537481d Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Fri, 9 May 2025 10:38:45 -0400 Subject: [PATCH] ReaderTab constructor: Assign _contextPaneOpen from correct option --- chrome/content/zotero/xpcom/reader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/reader.js b/chrome/content/zotero/xpcom/reader.js index 5d8f19a370..23727711d1 100644 --- a/chrome/content/zotero/xpcom/reader.js +++ b/chrome/content/zotero/xpcom/reader.js @@ -1242,7 +1242,7 @@ class ReaderTab extends ReaderInstance { super(options); this._sidebarWidth = options.sidebarWidth; this._sidebarOpen = options.sidebarOpen; - this._contextPaneOpen = options.bottomPlaceholderHeight; + this._contextPaneOpen = options.contextPaneOpen; this._bottomPlaceholderHeight = options.bottomPlaceholderHeight; this._showContextPaneToggle = true; this._onToggleSidebarCallback = options.onToggleSidebar;