Remove interpolation FIXME and DEFAULT_FONT_SIZE

This is just not going to happen, and with the new config we have no good way of
supporting a DEFAULT_FONT_SIZE.
This commit is contained in:
Florian Bruhin 2017-09-15 14:10:31 +02:00
parent e0621c6eda
commit ee5dd7fad2
2 changed files with 0 additions and 11 deletions

View File

@ -24,9 +24,6 @@ Module attributes:
DATA: A dict of Option objects after init() has been called.
"""
# FIXME:conf reintroduce interpolation?
import sys
import collections
import functools
@ -34,12 +31,6 @@ from qutebrowser.config import configtypes
from qutebrowser.utils import usertypes, qtutils, utils
DATA = None
# FIXME:conf what to do about this?
DEFAULT_FONT_SIZE = '10pt' if sys.platform == 'darwin' else '8pt'
Option = collections.namedtuple('Option', ['name', 'typ', 'default',
'backends', 'raw_backends',
'description'])

View File

@ -110,8 +110,6 @@ def whitelist_generator():
yield 'types.ModuleType.c' # configfiles:read_config_py
yield 'include_aliases'
## FIXME:conf TODO
yield 'qutebrowser.config.configdata.DEFAULT_FONT_SIZE'
for attr in ['_get_default_metavar_for_optional',
'_get_default_metavar_for_positional', '_metavar_formatter']: