mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
[flatpak] fix -> not displaying the runtimes icons on the summary window
This commit is contained in:
@@ -12,6 +12,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
- sometimes crashing when there are packages to be removed
|
||||
- AppImage
|
||||
- "Checking symlinks" initial task hanging if an installed AppImage data does not contain the installed directory field ('install_dir')
|
||||
- Flatpak
|
||||
- not displaying the runtimes icons on the summary window
|
||||
|
||||
## [0.9.7] 2020-09-11
|
||||
### Features
|
||||
|
||||
@@ -120,3 +120,7 @@ class FlatpakApplication(SoftwarePackage):
|
||||
def __eq__(self, other):
|
||||
if isinstance(other, FlatpakApplication):
|
||||
return self.id == other.id and self.installation == other.installation and self.branch == other.branch
|
||||
|
||||
def get_disk_icon_path(self) -> str:
|
||||
if not self.runtime:
|
||||
return super(FlatpakApplication, self).get_disk_icon_path()
|
||||
|
||||
Reference in New Issue
Block a user