[fix][aur] package name tooltip was displaying only the repository ( table row )

This commit is contained in:
Vinícius Moreira
2020-02-18 10:46:17 -03:00
parent 004db74b7a
commit 7aaf0565cc
2 changed files with 3 additions and 1 deletions

View File

@@ -13,6 +13,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixes ### Fixes
- Snap - Snap
- not able to launch applications on some distros ( e.g: OpenSuse ) - not able to launch applications on some distros ( e.g: OpenSuse )
- AUR
- package name tooltip was displaying only the repository ( table row )
- UI - UI
- not displaying some priority search results at the top of the table - not displaying some priority search results at the top of the table

View File

@@ -125,7 +125,7 @@ class ArchPackage(SoftwarePackage):
return False return False
def get_name_tooltip(self) -> str: def get_name_tooltip(self) -> str:
return '{}: {}'.format(self.i18n['repository'], self.mirror) return '{} ( {}: {} )'.format(self.name, self.i18n['repository'], self.mirror)
def __str__(self): def __str__(self):
return self.__repr__() return self.__repr__()