mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
android: share text (#5745)
This commit is contained in:
committed by
Frans de Jonge
parent
4e5779199d
commit
5ef329c19c
@@ -498,6 +498,17 @@ function ReaderHighlight:onShowHighlightMenu()
|
||||
},
|
||||
})
|
||||
end
|
||||
if Device:canShareText() then
|
||||
table.insert(highlight_buttons, {
|
||||
{
|
||||
text = _("Share text"),
|
||||
callback = function()
|
||||
Device.doShareText(self.selected_text.text)
|
||||
end,
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
self.highlight_dialog = ButtonDialog:new{
|
||||
buttons = highlight_buttons,
|
||||
tap_close_callback = function() self:handleEvent(Event:new("Tap")) end,
|
||||
|
||||
Reference in New Issue
Block a user