[appimage] improvement -> manual file installation default search path set to '~/Downloads'

This commit is contained in:
Vinicius Moreira
2020-08-11 13:38:35 -03:00
parent 4f05cb985d
commit 4de2eb317e
4 changed files with 12 additions and 2 deletions

View File

@@ -840,6 +840,8 @@ class FormQt(QGroupBox):
if c.file_path and os.path.isfile(c.file_path):
cur_path = c.file_path
elif c.search_path and os.path.exists(c.search_path):
cur_path = c.search_path
else:
cur_path = str(Path.home())