Quote:
Originally Posted by GeoffR
There is something strange happening there, I can't explain it and I can't reproduce the problem on my Glo.
Are you reading epubs or kepubs? What other patches do you have enabled? Are you using full-screen reading mode?
Edit: The other thing that would be interesting to check for anyone having similar problems is the line spacing value stored in the database for the book in question. You can do this with a SQL query such as:
Code:
SELECT ReadingLineHeight FROM content_settings WHERE ContentID=='file:///mnt/onboard/H/Holdstock, Mythago Wood.epub';
where ContentID is the path to the sideloaded file, or for kepubs synced from Kobo you can find the ContentID with a query like:
Code:
SELECT ContentID FROM content WHERE BookID IS NULL AND IsDownloaded=='true' AND Title=='Mythago Wood';
|
There is a good chance that this is it, but if the book was deleted, the settings should be deleted as well. The utilities plugin can display these change or delete these settings for a book. It can set and delete them for a group of books, but viewing them is one at a time.
To see them all, this will show all books with their own reading settings is:
Code:
SELECT c.ContentID, Title, Attribution, ReadingFontFamily, ReadingFontSize, ReadingAlignment, ReadingLineHeight, ReadingLeftMargin, ReadingRightMargin
FROM content c JOIN content_settings cs USING (ContentID)