Use a more visually striking icon for paged mode

This commit is contained in:
Kovid Goyal 2024-04-04 15:26:03 +05:30
parent 26c3985473
commit 544f991eed
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -212,7 +212,7 @@ def render_head_foot(div, which, region, metadata, current_toc_node, current_toc
elif field is 'view-mode': elif field is 'view-mode':
text = _('Paged') if view_mode is 'paged' else _('Flow') text = _('Paged') if view_mode is 'paged' else _('Flow')
elif field is 'view-mode-icon': elif field is 'view-mode-icon':
text = '🗏' if view_mode is 'paged' else '📜' text = '📄' if view_mode is 'paged' else '📜'
elif field.startswith('time-'): elif field.startswith('time-'):
if book_time is None or chapter_time is None: if book_time is None or chapter_time is None:
text = _('Calculating...') text = _('Calculating...')