mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Readersearch: add button to recall search input dialog (#8190)
This commit is contained in:
@@ -33,11 +33,13 @@ local Screen = Device.screen
|
||||
local logger = require("logger")
|
||||
|
||||
local Button = InputContainer:new{
|
||||
text = nil, -- mandatory
|
||||
text = nil, -- mandatory (unless icon is provided)
|
||||
text_func = nil,
|
||||
icon = nil,
|
||||
icon_width = Screen:scaleBySize(DGENERIC_ICON_SIZE), -- our icons are square
|
||||
icon_height = Screen:scaleBySize(DGENERIC_ICON_SIZE),
|
||||
icon_width = Screen:scaleBySize(DGENERIC_ICON_SIZE * 0.8), -- our icons are square
|
||||
icon_height = Screen:scaleBySize(DGENERIC_ICON_SIZE * 0.8),
|
||||
-- Reduced size of the icons (0.8) nicely match the size of the default font
|
||||
-- of text buttons ("cfont", 20), when mixing both text and icon buttons.
|
||||
icon_rotation_angle = 0,
|
||||
preselect = false,
|
||||
callback = nil,
|
||||
|
||||
Reference in New Issue
Block a user