Revert "Use "Monospace" only as monospace font"

This reverts commit 1442b1e35f.

For true CSS fonts (hints), we can use "Monospace" as generic family and
it'll work.

However, for Qt fonts, this will get us a non-monospace font on Windows.

Conflicts:
	qutebrowser/config/configdata.py
This commit is contained in:
Florian Bruhin 2014-04-22 08:26:46 +02:00
parent ae7c04f4e3
commit 7645f4fdea

View File

@ -511,16 +511,23 @@ DATA = OrderedDict([
)),
('fonts', sect.KeyValue(
('_monospace',
SettingValue(types.Font(), 'Monospace, "DejaVu Sans Mono", Consolas, '
'Monaco, "Bitstream Vera Sans Mono", "Andale Mono", '
'"Liberation Mono", "Courier New", Courier, monospace, '
'Fixed, Terminal'),
"Default monospace fonts."),
('completion',
SettingValue(types.Font(), "8pt Monospace"),
SettingValue(types.Font(), "8pt ${_monospace}"),
"Font used in the completion widget."),
('tabbar',
SettingValue(types.Font(), "8pt Monospace"),
SettingValue(types.Font(), "8pt ${_monospace}"),
"Font used in the tabbar."),
('statusbar',
SettingValue(types.Font(), "8pt Monospace"),
SettingValue(types.Font(), "8pt ${_monospace}"),
"Font used in the statusbar."),
('hints',