Created
May 3, 2024 07:58
-
-
Save equwal/612eab3221f312f5d7744d5358251bcb to your computer and use it in GitHub Desktop.
Is it possbile to disable touch (navigate) property of the progress bar? #9277
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local ReaderFooter = require("apps/reader/modules/readerfooter") | |
local onTapFooter_orig = ReaderFooter.onTapFooter | |
ReaderFooter.onTapFooter = function(self, ges) | |
if self.view.flipping_visible then return true end | |
return onTapFooter_orig(self, ges) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment