mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
[UX] Option to show dictionary in large window (#3499)
This commit is contained in:
@@ -251,6 +251,15 @@ If you'd like to change the order in which dictionaries are queried (and their r
|
||||
})
|
||||
end,
|
||||
},
|
||||
{ -- setting used by dictquicklookup
|
||||
text = _("Large window"),
|
||||
checked_func = function()
|
||||
return G_reader_settings:isTrue("dict_largewindow")
|
||||
end,
|
||||
callback = function()
|
||||
G_reader_settings:flipNilOrFalse("dict_largewindow")
|
||||
end,
|
||||
},
|
||||
{ -- setting used by dictquicklookup
|
||||
text = _("Justify text"),
|
||||
checked_func = function()
|
||||
|
||||
@@ -165,7 +165,7 @@ function DictQuickLookup:update()
|
||||
w = Screen:getWidth(),
|
||||
h = Screen:getHeight(),
|
||||
}
|
||||
if self.is_fullpage then
|
||||
if self.is_fullpage or G_reader_settings:isTrue("dict_largewindow") then
|
||||
-- bigger window if fullpage being shown - this will let
|
||||
-- some room anyway for footer display (time, battery...)
|
||||
self.height = Screen:getHeight()
|
||||
|
||||
Reference in New Issue
Block a user