Skip to content

Commit

Permalink
Use a more visually striking icon for paged mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Apr 4, 2024
1 parent 26c3985 commit 544f991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyj/read_book/prefs/head_foot.pyj
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def render_head_foot(div, which, region, metadata, current_toc_node, current_toc
elif field is 'view-mode':
text = _('Paged') if view_mode is 'paged' else _('Flow')
elif field is 'view-mode-icon':
text = '🗏' if view_mode is 'paged' else '📜'
text = '📄' if view_mode is 'paged' else '📜'
elif field.startswith('time-'):
if book_time is None or chapter_time is None:
text = _('Calculating...')
Expand Down

0 comments on commit 544f991

Please sign in to comment.