mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
3dfa9aa51d
And tap the above right corner will toggle the bookmark on this page on/off.
16 lines
369 B
Lua
16 lines
369 B
Lua
|
|
ReaderDogear = RightContainer:new{}
|
|
|
|
function ReaderDogear:init()
|
|
local widget = ImageWidget:new{
|
|
file = "resources/icons/dogear.png",
|
|
}
|
|
local icon_size = widget:getSize()
|
|
self.dimen = Geom:new{w = Screen:getWidth(), h = icon_size.h}
|
|
self[1] = widget
|
|
end
|
|
|
|
function ReaderDogear:onSetDogearVisibility(visible)
|
|
self.view.dogear_visible = visible
|
|
return true
|
|
end |