optionsutil: Simplify the public formatFlexSize wrapper

Pull the dimension_units from in there,
instead of asking callers to do that.
This commit is contained in:
NiLuJe
2024-09-13 13:50:31 +02:00
parent 3cbd75b385
commit e887be693f
3 changed files with 25 additions and 19 deletions

View File

@@ -1094,7 +1094,7 @@ end
function ReaderView:onPageGapUpdate(page_gap)
self.page_gap.height = Screen:scaleBySize(page_gap)
Notification:notify(T(_("Page gap set to %1."), optionsutil.formatFlexSize(page_gap, G_reader_settings:readSetting("dimension_units"))))
Notification:notify(T(_("Page gap set to %1."), optionsutil.formatFlexSize(page_gap)))
return true
end