From a79c83cb9e67e903590b8c4bbc5174a530bfd55d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 9 Oct 2019 07:43:18 +0530 Subject: [PATCH] Viewer: Fix scrollbar showing up on initial book open even if disabled in preferences. Fixes #1847323 [Scrollbar shows even when disabled on book open](https://bugs.launchpad.net/calibre/+bug/1847323) --- src/pyj/read_book/view.pyj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pyj/read_book/view.pyj b/src/pyj/read_book/view.pyj index 65eee9509f..1b7982cfac 100644 --- a/src/pyj/read_book/view.pyj +++ b/src/pyj/read_book/view.pyj @@ -215,6 +215,7 @@ class View: self.processing_spine_item_display = False self.pending_load = None self.currently_showing = {} + self.book_scrollbar.apply_visibility() @property def iframe(self):