This commit is contained in:
Kovid Goyal 2018-06-16 12:54:04 +05:30
commit 27133e8327
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -527,7 +527,7 @@ class EbookViewer(MainWindow):
value, maximum = self.pos.value(), self.pos.maximum()
text = '%g/%g'%(value, maximum)
if fmt:
title = '({}) {} [{}]'.format(text, self.current_title, fmt)
title = '({}) {} [{}] - {}'.format(text, self.current_title, fmt, self.base_window_title)
else:
title = '({}) {} - {}'.format(text, self.current_title, self.base_window_title)
else: