Readersearch: add button to recall search input dialog (#8190)

This commit is contained in:
hius07
2021-09-10 02:07:31 +03:00
committed by GitHub
parent 18687e4666
commit e16d36d5da
3 changed files with 14 additions and 3 deletions

View File

@@ -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,