[improvement] all icons as SVGs

This commit is contained in:
Vinícius Moreira
2019-12-26 17:16:33 -03:00
parent ea2fb297fc
commit 12859dfe6c
37 changed files with 947 additions and 64 deletions

View File

@@ -9,7 +9,7 @@ from bauh.view.util.translation import I18n
def _get_mirror_icon(mirror: str):
return resource.get_path('img/{}.png'.format('arch' if mirror == 'aur' else 'mirror'), ROOT_DIR)
return resource.get_path('img/{}.svg'.format('arch' if mirror == 'aur' else 'mirror'), ROOT_DIR)
def request_optional_deps(pkgname: str, pkg_mirrors: dict, watcher: ProcessWatcher, i18n: I18n) -> Set[str]: