From 39b56a66dcea483eb5e1d06e430400ffe926cfdf Mon Sep 17 00:00:00 2001 From: Martynas Bagdonas Date: Fri, 21 May 2021 15:44:38 +0300 Subject: [PATCH] Fix blank standalone PDF reader window issue --- 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 51912efc17..20096607ed 100644 --- a/chrome/content/zotero/xpcom/reader.js +++ b/chrome/content/zotero/xpcom/reader.js @@ -709,7 +709,7 @@ class Reader { constructor() { this._sidebarWidth = 200; this._sidebarOpen = false; - this._bottomPlaceholderHeight = 800; + this._bottomPlaceholderHeight = 0; this._readers = []; this._notifierID = Zotero.Notifier.registerObserver(this, ['item', 'tab'], 'reader'); this.onChangeSidebarWidth = null;