Skip to content

Instantly share code, notes, and snippets.

@equwal
Created May 3, 2024 07:58
Show Gist options
  • Save equwal/612eab3221f312f5d7744d5358251bcb to your computer and use it in GitHub Desktop.
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
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