Set default values of preferences "default_finished_path" and
"default_download_path" to user's $HOME/.
This commit is contained in:
parent
6e1a1b88fa
commit
76c82d8946
|
@ -41,9 +41,9 @@ DEFAULT_PREFS = {
|
|||
"auto_end_seeding" : False,
|
||||
"auto_seed_ratio" : 0,
|
||||
"close_to_tray" : False,
|
||||
"default_download_path" : "",
|
||||
"default_download_path" : os.path.expanduser("~/"),
|
||||
"default_load_path" : os.path.expanduser("~/"),
|
||||
"default_finished_path" : "",
|
||||
"default_finished_path" : os.path.expanduser("~/"),
|
||||
"enable_move_completed" : False,
|
||||
"enable_dht" : True,
|
||||
"enable_system_tray" : True,
|
||||
|
|
Loading…
Reference in New Issue