From 500d3ae98324fe08087b811db1c4698c4c3755f2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 16 May 2020 12:46:07 +0530 Subject: [PATCH] Fix #1879031 [[Enhancement - Viewer] Make the text look more lika a title](https://bugs.launchpad.net/calibre/+bug/1879031) --- src/pyj/read_book/open_book.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/open_book.pyj b/src/pyj/read_book/open_book.pyj index 2b10fc333e..33cff6e34b 100644 --- a/src/pyj/read_book/open_book.pyj +++ b/src/pyj/read_book/open_book.pyj @@ -22,7 +22,7 @@ def create_open_book(container, book): container.appendChild(E.div(id=unique_id())) c = container.lastChild items = [] - c.appendChild(E.div(style='margin-top: 1rem', _('Recently viewed books'))) + c.appendChild(E.h2(style='margin-top: 1rem', _('Recently viewed books'))) c.appendChild(E.div()) for entry in rl: if book and book.manifest.pathtoebook is entry.pathtoebook: