From 544f991eed21aefcfc39dcade565a2dae52bb30f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 4 Apr 2024 15:26:03 +0530 Subject: [PATCH] Use a more visually striking icon for paged mode --- src/pyj/read_book/prefs/head_foot.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/prefs/head_foot.pyj b/src/pyj/read_book/prefs/head_foot.pyj index 31b63d3383..18bdc50f98 100644 --- a/src/pyj/read_book/prefs/head_foot.pyj +++ b/src/pyj/read_book/prefs/head_foot.pyj @@ -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...')