Bump up default font size on OS X
This commit is contained in:
parent
cdb33a04cc
commit
d1fdd5e776
@ -26,6 +26,7 @@ SECTION_DESC: A dictionary with descriptions for sections.
|
|||||||
DATA: The config defaults, an OrderedDict of sections.
|
DATA: The config defaults, an OrderedDict of sections.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import sys
|
||||||
import re
|
import re
|
||||||
import collections
|
import collections
|
||||||
|
|
||||||
@ -110,6 +111,9 @@ SECTION_DESC = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
DEFAULT_FONT_SIZE = '10pt' if sys.platform == 'darwin' else '8pt'
|
||||||
|
|
||||||
|
|
||||||
DATA = collections.OrderedDict([
|
DATA = collections.OrderedDict([
|
||||||
('general', sect.KeyValue(
|
('general', sect.KeyValue(
|
||||||
('ignore-case',
|
('ignore-case',
|
||||||
@ -716,19 +720,19 @@ DATA = collections.OrderedDict([
|
|||||||
"Default monospace fonts."),
|
"Default monospace fonts."),
|
||||||
|
|
||||||
('completion',
|
('completion',
|
||||||
SettingValue(typ.Font(), '8pt ${_monospace}'),
|
SettingValue(typ.Font(), DEFAULT_FONT_SIZE + ' ${_monospace}'),
|
||||||
"Font used in the completion widget."),
|
"Font used in the completion widget."),
|
||||||
|
|
||||||
('tabbar',
|
('tabbar',
|
||||||
SettingValue(typ.QtFont(), '8pt ${_monospace}'),
|
SettingValue(typ.QtFont(), DEFAULT_FONT_SIZE + ' ${_monospace}'),
|
||||||
"Font used in the tabbar."),
|
"Font used in the tabbar."),
|
||||||
|
|
||||||
('statusbar',
|
('statusbar',
|
||||||
SettingValue(typ.Font(), '8pt ${_monospace}'),
|
SettingValue(typ.Font(), DEFAULT_FONT_SIZE + ' ${_monospace}'),
|
||||||
"Font used in the statusbar."),
|
"Font used in the statusbar."),
|
||||||
|
|
||||||
('downloads',
|
('downloads',
|
||||||
SettingValue(typ.Font(), '8pt ${_monospace}'),
|
SettingValue(typ.Font(), DEFAULT_FONT_SIZE + ' ${_monospace}'),
|
||||||
"Font used for the downloadbar."),
|
"Font used for the downloadbar."),
|
||||||
|
|
||||||
('hints',
|
('hints',
|
||||||
@ -736,7 +740,7 @@ DATA = collections.OrderedDict([
|
|||||||
"Font used for the hints."),
|
"Font used for the hints."),
|
||||||
|
|
||||||
('debug-console',
|
('debug-console',
|
||||||
SettingValue(typ.QtFont(), '8pt ${_monospace}'),
|
SettingValue(typ.QtFont(), DEFAULT_FONT_SIZE + ' ${_monospace}'),
|
||||||
"Font used for the debugging console."),
|
"Font used for the debugging console."),
|
||||||
|
|
||||||
('web-family-standard',
|
('web-family-standard',
|
||||||
|
Loading…
Reference in New Issue
Block a user