mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
[fix][aur] package name tooltip was displaying only the repository ( table row )
This commit is contained in:
@@ -13,6 +13,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
### Fixes
|
||||
- Snap
|
||||
- not able to launch applications on some distros ( e.g: OpenSuse )
|
||||
- AUR
|
||||
- package name tooltip was displaying only the repository ( table row )
|
||||
- UI
|
||||
- not displaying some priority search results at the top of the table
|
||||
|
||||
|
||||
@@ -125,7 +125,7 @@ class ArchPackage(SoftwarePackage):
|
||||
return False
|
||||
|
||||
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):
|
||||
return self.__repr__()
|
||||
|
||||
Reference in New Issue
Block a user