mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-30 03:43:14 +02:00
Always include base_window_title in window title
Also include base title when controls are hidden for consistency
This commit is contained in:
parent
a275acb5c0
commit
c8291929dc
1 changed files with 1 additions and 1 deletions
|
|
@ -527,7 +527,7 @@ def update_window_title(self):
|
|||
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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue