mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 21:14:15 +02:00
[gem.appimage] fix: info button remains 'clickable' after an imported Appimage is uninstalled
This commit is contained in:
@@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
### Fixes
|
### Fixes
|
||||||
- AppImage
|
- AppImage
|
||||||
- search: not matching manually installed applications
|
- search: not matching manually installed applications
|
||||||
|
- info button remains "clickable" after an imported Appimage is uninstalled
|
||||||
|
|
||||||
|
|
||||||
## [0.9.18] 2021-06-18
|
## [0.9.18] 2021-06-18
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ class AppImage(SoftwarePackage):
|
|||||||
return self.installed and not self.imported
|
return self.installed and not self.imported
|
||||||
|
|
||||||
def has_info(self):
|
def has_info(self):
|
||||||
return True
|
return self.installed if self.imported else True
|
||||||
|
|
||||||
def can_be_downgraded(self):
|
def can_be_downgraded(self):
|
||||||
return self.installed and not self.imported
|
return self.installed and not self.imported
|
||||||
|
|||||||
Reference in New Issue
Block a user