mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
turn the open window on by default
This commit is contained in:
parent
2dc92e4483
commit
d63d29bbbe
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@
|
||||||
<key>DisplayStatusProgressSelected</key>
|
<key>DisplayStatusProgressSelected</key>
|
||||||
<false/>
|
<false/>
|
||||||
<key>DownloadAsk</key>
|
<key>DownloadAsk</key>
|
||||||
<false/>
|
<true/>
|
||||||
<key>DownloadFolder</key>
|
<key>DownloadFolder</key>
|
||||||
<string>~/Downloads</string>
|
<string>~/Downloads</string>
|
||||||
<key>DownloadLimit</key>
|
<key>DownloadLimit</key>
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
if ((choice = [fDefaults stringForKey: @"DownloadChoice"]))
|
if ((choice = [fDefaults stringForKey: @"DownloadChoice"]))
|
||||||
{
|
{
|
||||||
[fDefaults setBool: [choice isEqualToString: @"Constant"] forKey: @"DownloadLocationConstant"];
|
[fDefaults setBool: [choice isEqualToString: @"Constant"] forKey: @"DownloadLocationConstant"];
|
||||||
[fDefaults setBool: [choice isEqualToString: @"Ask"] forKey: @"DownloadAsk"];
|
[fDefaults setBool: YES forKey: @"DownloadAsk"];
|
||||||
|
|
||||||
[fDefaults removeObjectForKey: @"DownloadChoice"];
|
[fDefaults removeObjectForKey: @"DownloadChoice"];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue