Tap to Paginate User Pref (#197)

* Fixed In Progress and removed comments

* Tap to Paginate user setting is implemented. Fixes #193
This commit is contained in:
Joseph Milazzo 2021-05-04 17:01:27 -05:00 committed by GitHub
parent 9c43833989
commit 2be1630af3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 803 additions and 3 deletions

View file

@ -38,6 +38,10 @@ namespace API.Entities
/// Book Reader Option: Maps to the default Kavita font-family (inherit) or an override
/// </summary>
public string BookReaderFontFamily { get; set; } = "default";
/// <summary>
/// Book Reader Option: Allows tapping on side of screens to paginate
/// </summary>
public bool BookReaderTapToPaginate { get; set; } = false;