[fix][ui][settings] web inputs scaling

This commit is contained in:
Vinícius Moreira
2020-01-28 17:17:24 -03:00
parent af25d9b401
commit be7f93d688
2 changed files with 4 additions and 0 deletions

View File

@@ -904,12 +904,14 @@ class ArchManager(SoftwareManager):
max_per_line=len(optz_opts),
type_=SelectViewType.RADIO,
tooltip=self.i18n['arch.config.optimize.tip'],
max_width=200,
id_='opts'),
SingleSelectComponent(label=self.i18n['arch.config.trans_dep_check'].capitalize(),
options=trans_check_opts,
default_option=[o for o in trans_check_opts if o.value == config['transitive_checking']][0],
max_per_line=len(trans_check_opts),
type_=SelectViewType.RADIO,
max_width=200,
tooltip=self.i18n['arch.config.trans_dep_check.tip'],
id_='dep_check')]