Viewer: Fix hang when using --open-at with single instance viewer and the specified location is already open. Fixes #1656573 [[Enhancement] viewer command-line parameter to go to ePub TOC entry/bookmark](https://bugs.launchpad.net/calibre/+bug/1656573)

This commit is contained in:
Kovid Goyal 2019-11-21 10:09:16 +05:30
parent cd66cb007e
commit c1d6b7b85c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -640,7 +640,9 @@ class View:
if not navigated and jstype(initial_bookpos) is 'number':
navigated = True
self.goto_book_position(initial_bookpos)
if not navigated:
if navigated:
self.hide_loading()
else:
self.show_name(name, initial_position=pos)
sd = get_session_data()
c = sd.get('controls_help_shown_count', 0)