Fix font-size-* in settings
This commit is contained in:
parent
3deeaede8a
commit
381d36263c
2
TODO
2
TODO
@ -87,8 +87,6 @@ Bugs
|
|||||||
|
|
||||||
- Command history seems to be broken
|
- Command history seems to be broken
|
||||||
|
|
||||||
- font-size-* not in websettings
|
|
||||||
|
|
||||||
|
|
||||||
Style
|
Style
|
||||||
=====
|
=====
|
||||||
|
@ -460,19 +460,19 @@ DATA = OrderedDict([
|
|||||||
"Font family for fantasy fonts."),
|
"Font family for fantasy fonts."),
|
||||||
|
|
||||||
('font-size-minimum',
|
('font-size-minimum',
|
||||||
SettingValue(types.String(none=True), ''),
|
SettingValue(types.Int(none=True), ''),
|
||||||
"The hard minimum font size."),
|
"The hard minimum font size."),
|
||||||
|
|
||||||
('font-size-minimum-logical',
|
('font-size-minimum-logical',
|
||||||
SettingValue(types.String(none=True), ''),
|
SettingValue(types.Int(none=True), ''),
|
||||||
"The minimum logical font size that is applied when zooming out."),
|
"The minimum logical font size that is applied when zooming out."),
|
||||||
|
|
||||||
('font-size-default',
|
('font-size-default',
|
||||||
SettingValue(types.String(none=True), ''),
|
SettingValue(types.Int(none=True), ''),
|
||||||
"The default font size for regular text."),
|
"The default font size for regular text."),
|
||||||
|
|
||||||
('font-size-default-fixed',
|
('font-size-default-fixed',
|
||||||
SettingValue(types.String(none=True), ''),
|
SettingValue(types.Int(none=True), ''),
|
||||||
"The default font size for fixed-pitch text."),
|
"The default font size for fixed-pitch text."),
|
||||||
|
|
||||||
('maximum-pages-in-cache',
|
('maximum-pages-in-cache',
|
||||||
|
Loading…
Reference in New Issue
Block a user