TextViewer: font size (#10911)

This commit is contained in:
hius07
2023-09-19 08:39:25 +03:00
committed by GitHub
parent 2b13cd7dcb
commit 684fc22ffc
9 changed files with 28 additions and 21 deletions

View File

@@ -5,7 +5,6 @@ It it used by ReaderHighlight as an action after text selection.
local BD = require("ui/bidi")
local Device = require("device")
local Font = require("ui/font")
local InfoMessage = require("ui/widget/infomessage")
local Notification = require("ui/widget/notification")
local TextViewer = require("ui/widget/textviewer")
@@ -30,7 +29,8 @@ local ViewHtml = {
-- Or additionally show unicode codepoint of each char
{ _("Switch to unicode debug view"), 0xEB5E, true },
}
},
text_font_face = "smallinfont",
}
-- Main entry point
@@ -124,7 +124,7 @@ function ViewHtml:_viewSelectionHTML(document, selected_text, view, with_css_fil
cssviewer = TextViewer:new{
title = css_files[i],
text = css_text or _("Failed getting CSS content"),
text_face = Font:getFace("smallinfont"),
text_font_face = self.text_font_face,
justified = false,
para_direction_rtl = false,
auto_para_direction = false,
@@ -138,7 +138,7 @@ function ViewHtml:_viewSelectionHTML(document, selected_text, view, with_css_fil
UIManager:show(TextViewer:new{
title = css_files[i],
text = util.prettifyCSS(css_text),
text_face = Font:getFace("smallinfont"),
text_font_face = self.text_font_face,
justified = false,
para_direction_rtl = false,
auto_para_direction = false,
@@ -185,7 +185,7 @@ function ViewHtml:_viewSelectionHTML(document, selected_text, view, with_css_fil
textviewer = TextViewer:new{
title = _("Selection HTML"),
text = html,
text_face = Font:getFace("smallinfont"),
text_font_face = self.text_font_face,
justified = false,
para_direction_rtl = false,
auto_para_direction = false,
@@ -375,8 +375,8 @@ function ViewHtml:_handleLongPress(document, css_selectors_offsets, offset_shift
end,
}})
local ButtonDialogTitle = require("ui/widget/buttondialogtitle")
local widget = ButtonDialogTitle:new{
local ButtonDialog = require("ui/widget/buttondialog")
local widget = ButtonDialog:new{
title = _("Copy to clipboard:"),
title_align = "center",
width_factor = 0.8,
@@ -420,7 +420,7 @@ function ViewHtml:_showMatchingSelectors(document, ancestors, show_all_ancestors
cssviewer = TextViewer:new{
title = title,
text = css_text or _("No matching rulesets"),
text_face = Font:getFace("smallinfont"),
text_font_face = self.text_font_face,
justified = false,
para_direction_rtl = false,
auto_para_direction = false,
@@ -434,7 +434,7 @@ function ViewHtml:_showMatchingSelectors(document, ancestors, show_all_ancestors
UIManager:show(TextViewer:new{
title = title,
text = util.prettifyCSS(css_text),
text_face = Font:getFace("smallinfont"),
text_font_face = self.text_font_face,
justified = false,
para_direction_rtl = false,
auto_para_direction = false,