[appimage] fix: not displaying the filter for any kind of file (*) when updating imported AppImages

This commit is contained in:
Vinicius Moreira
2021-11-03 14:36:49 -03:00
parent 4af4e3b26c
commit c0ce28e1d6
2 changed files with 7 additions and 1 deletions

View File

@@ -152,7 +152,7 @@ class AppImageManager(SoftwareManager):
def update_file(self, pkg: AppImage, root_password: str, watcher: ProcessWatcher):
file_chooser = FileChooserComponent(label=self.i18n['file'].capitalize(),
allowed_extensions={'AppImage'},
allowed_extensions={'AppImage', '*'},
search_path=get_default_manual_installation_file_dir())
input_version = TextInputComponent(label=self.i18n['version'].capitalize())
file_chooser.observers.append(ManualInstallationFileObserver(None, input_version))